Update AssetRequestOrder entity: remove default value from nota_dinas column

This commit is contained in:
fro1991
2025-03-21 02:49:35 +07:00
parent fc7d939b07
commit 05c806e471

View File

@ -71,7 +71,7 @@ export class AssetRequestOrder {
@Column({ nullable: true, length: 4096 })
file: string;
@Column({ nullable: true, length: 256, default: '' })
@Column({ nullable: true, length: 256 })
nota_dinas: string;
@Column({ type: 'varchar', length: 50, default: 'pending' })