feat(pharmacy): add active ingredient field to item master

This commit is contained in:
avicenan
2026-03-26 09:21:17 +07:00
parent 938ea5b55b
commit db8325e00b

View File

@ -100,6 +100,12 @@ export class ItemMaster {
}) })
strength?: number; strength?: number;
@Column({
type: "text",
nullable: true,
})
active_ingredient?: string;
@Column({ @Column({
type: "boolean", type: "boolean",
default: true, default: true,