fix(patient): add new column of tag_id

This commit is contained in:
avicenan
2026-06-09 16:44:51 +09:00
parent 98be255203
commit 8cd67b6236

View File

@ -112,6 +112,9 @@ export class EmrPatient {
@Column({ nullable: true, length: 128 }) @Column({ nullable: true, length: 128 })
telephone: string; telephone: string;
@Column({ nullable: true, length: 128 })
tag_id: string;
@Column() @Column()
@CreateDateColumn() @CreateDateColumn()
created_at: Date; created_at: Date;