feat(refferal-hospital): add column of order number for ordering

This commit is contained in:
avicenan
2026-05-27 11:48:38 +09:00
parent 4be58af318
commit 42519b6f97

View File

@ -12,6 +12,9 @@ import {
@PrimaryGeneratedColumn("uuid") @PrimaryGeneratedColumn("uuid")
id!: string; id!: string;
@Column({ type: "number", nullable: true })
order_number: number;
@Column({ type: "text", nullable: false }) @Column({ type: "text", nullable: false })
refferal_hospital_name!: string; refferal_hospital_name!: string;