This commit is contained in:
fro1991
2025-02-13 15:18:04 +07:00
parent e94b8fea5f
commit 5c0c3d505f
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ export class AssetPurchase {
}) })
purchase_at: Date; purchase_at: Date;
@Column("uuid") @Column({ type: 'varchar', length: 255 })
department_id: string; department_id: string;
@Column({ type: "varchar", length: 255 }) @Column({ type: "varchar", length: 255 })

View File

@ -20,7 +20,7 @@ export class AssetRequestOrder {
@JoinTable() @JoinTable()
request_order_category: AssetRequestOrderCategory; request_order_category: AssetRequestOrderCategory;
@Column({ type: 'uuid' }) @Column({ type: 'varchar', length: 255 })
department_id: string; department_id: string;
@Column({ type: 'varchar', length: 255 }) @Column({ type: 'varchar', length: 255 })