fix(card-print-queue): add new column of token

This commit is contained in:
avicenan
2026-06-11 10:21:15 +09:00
parent a6b465a78a
commit d626812e78

View File

@ -68,6 +68,9 @@ export class CardPrintQueue {
})
type!: CardPrintQueueType;
@Column({ type: "text", nullable: true })
token?: string;
@CreateDateColumn()
created_at!: Date;