update supplier field

This commit is contained in:
fadlydev
2025-01-15 15:22:52 +07:00
parent e8c65a6c35
commit d25b073ff0

View File

@ -18,12 +18,6 @@ export class Supplier {
}) })
name: string; name: string;
@Column({
nullable: true,
length: 255,
})
description: string;
@Column({ @Column({
nullable: true, nullable: true,
length: 128, length: 128,
@ -52,7 +46,13 @@ export class Supplier {
nullable: false, nullable: false,
length: 64, length: 64,
}) })
status: string; code_id: string;
@Column({
nullable: false,
length: 64,
})
type: string;
@Column() @Column()
@CreateDateColumn() @CreateDateColumn()