fix: displayName return undefined and drop displayName from user table (#505)

This commit is contained in:
Jérémy M
2023-07-04 20:08:15 +02:00
committed by GitHub
parent d83313cd93
commit 6fc416da76
98 changed files with 128 additions and 222 deletions

View File

@ -0,0 +1,10 @@
/*
Warnings:
- You are about to drop the column `displayName` on the `users` table. All the data in the column will be lost.
*/
-- AlterTable
ALTER TABLE "users" DROP COLUMN "displayName",
ALTER COLUMN "firstName" DROP DEFAULT,
ALTER COLUMN "lastName" DROP DEFAULT;

View File

@ -138,11 +138,6 @@ model User {
firstName String
/// @Validator.IsString()
lastName String
// @deprecated: Use `firstName` and `lastName` instead
/// @Validator.IsString()
/// @Validator.IsOptional()
/// @TypeGraphQL.omit(input: false, output: true)
displayName String?
/// @Validator.IsEmail()
email String @unique
/// @Validator.IsBoolean()