fix(patient): make first and last name nullable
This commit is contained in:
@ -21,10 +21,10 @@ export class EmrPatient {
|
|||||||
@Column({ nullable: true, length: 64 })
|
@Column({ nullable: true, length: 64 })
|
||||||
passport_number: string;
|
passport_number: string;
|
||||||
|
|
||||||
@Column({ nullable: false, length: 256 })
|
@Column({ nullable: true, length: 256 })
|
||||||
first_name: string;
|
first_name: string;
|
||||||
|
|
||||||
@Column({ nullable: false, length: 256 })
|
@Column({ nullable: true, length: 256 })
|
||||||
last_name: string;
|
last_name: string;
|
||||||
|
|
||||||
@Column({ nullable: true, length: 256 })
|
@Column({ nullable: true, length: 256 })
|
||||||
|
|||||||
Reference in New Issue
Block a user