Merge branch 'main' of https://git.shiblysolution.id/SAUDE-TL/entity
This commit is contained in:
@ -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;
|
||||||
|
|||||||
@ -3,4 +3,5 @@ export enum InpatientRoomBedStatus {
|
|||||||
"Empty" = "empty",
|
"Empty" = "empty",
|
||||||
"Progress" = "progress",
|
"Progress" = "progress",
|
||||||
"Occupied" = "occupied",
|
"Occupied" = "occupied",
|
||||||
|
"Transfer" = 'transfer',
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user