add is_active boolean

This commit is contained in:
fadlydev
2025-01-15 20:37:05 +07:00
parent 682e9ee43d
commit f2ef36a7d7

View File

@ -54,6 +54,12 @@ export class Supplier {
}) })
type: string; type: string;
@Column({
type: 'boolean',
default: true,
})
is_active: boolean;
@Column() @Column()
@CreateDateColumn() @CreateDateColumn()
created_at: Date; created_at: Date;