feat(patient): add new column of card_print_queue_id to store the task/job id

This commit is contained in:
avicenan
2026-06-17 15:45:52 +09:00
parent 5ff288b45f
commit 640bc9cf9e

View File

@ -126,6 +126,9 @@ export class EmrPatient {
@Column({ nullable: true, length: 64 }) @Column({ nullable: true, length: 64 })
card_name: string; card_name: string;
@Column({ nullable: true })
card_print_queue_id: string;
@Column() @Column()
@CreateDateColumn() @CreateDateColumn()
created_at: Date; created_at: Date;