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;
@Column({
type: 'boolean',
default: true,
})
is_active: boolean;
@Column()
@CreateDateColumn()
created_at: Date;