fix(patient): add fullname column
This commit is contained in:
@ -29,6 +29,9 @@ export class EmrPatient {
|
||||
@Column({ nullable: false, length: 256 })
|
||||
last_name: string;
|
||||
|
||||
@Column({ nullable: true, length: 256 })
|
||||
full_name: string;
|
||||
|
||||
@Column({ type: "date", nullable: false })
|
||||
birth_date: Date;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user