fix(user): make email nullable

This commit is contained in:
avicenan
2026-06-01 09:36:44 +09:00
parent b29f2457a7
commit 6b4a6e75a5

View File

@ -11,7 +11,7 @@ export class User {
id: string; id: string;
@Column({ @Column({
nullable: false, nullable: true,
unique: false, unique: false,
length: 64, length: 64,
}) })