update: add large_unit and small_unit to pharmacy unit
This commit is contained in:
@ -18,6 +18,18 @@ export class Unit {
|
||||
})
|
||||
unit_name!: string;
|
||||
|
||||
@Column({
|
||||
type: "text",
|
||||
nullable: true,
|
||||
})
|
||||
small_unit: string;
|
||||
|
||||
@Column({
|
||||
type: "text",
|
||||
nullable: true,
|
||||
})
|
||||
large_unit: string;
|
||||
|
||||
@CreateDateColumn()
|
||||
created_at!: Date;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user