This commit is contained in:
avicenan
2026-05-29 00:04:25 +09:00
2 changed files with 4 additions and 3 deletions

View File

@ -12,7 +12,7 @@ export class User {
@Column({ @Column({
nullable: false, nullable: false,
unique: true, unique: false,
length: 64, length: 64,
}) })
email: string; email: string;
@ -29,8 +29,8 @@ export class User {
password: string; password: string;
@Column({ @Column({
nullable: false, nullable: true,
unique: true, unique: false,
length: 64, length: 64,
}) })
username: string; username: string;

View File

@ -3,4 +3,5 @@ export enum InpatientRoomBedStatus {
"Empty" = "empty", "Empty" = "empty",
"Progress" = "progress", "Progress" = "progress",
"Occupied" = "occupied", "Occupied" = "occupied",
"Transfer" = 'transfer',
} }