diff --git a/src/entity/supplier.ts b/src/entity/supplier.ts index 7daab55..a5bc93d 100644 --- a/src/entity/supplier.ts +++ b/src/entity/supplier.ts @@ -18,12 +18,6 @@ export class Supplier { }) name: string; - @Column({ - nullable: true, - length: 255, - }) - description: string; - @Column({ nullable: true, length: 128, @@ -52,7 +46,13 @@ export class Supplier { nullable: false, length: 64, }) - status: string; + code_id: string; + + @Column({ + nullable: false, + length: 64, + }) + type: string; @Column() @CreateDateColumn()