feat(inventory): map physical instance flag on asset entity

This commit is contained in:
2026-09-08 18:22:15 -03:00
parent e082f5d062
commit 637e9167b4
@@ -57,6 +57,9 @@ export class Asset extends TimestampedEntity {
@Column({ name: 'inventory_family_id', type: 'uuid', nullable: true })
inventoryFamilyId!: string | null;
@Column({ name: 'is_inventory_instance', type: 'boolean', default: false })
isInventoryInstance!: boolean;
@Column({ type: 'varchar', length: 120 })
code!: string;