update: add large_unit and small_unit to pharmacy unit

This commit is contained in:
wayanrivan
2026-03-11 13:46:28 +07:00
parent 782667f73a
commit 077e1d7859

View File

@ -18,6 +18,18 @@ export class Unit {
}) })
unit_name!: string; unit_name!: string;
@Column({
type: "text",
nullable: true,
})
small_unit: string;
@Column({
type: "text",
nullable: true,
})
large_unit: string;
@CreateDateColumn() @CreateDateColumn()
created_at!: Date; created_at!: Date;