add rank field to product variant

This commit is contained in:
pKorsholm
2021-09-02 09:51:53 +02:00
parent d652b512c3
commit 99b6a94146

View File

@@ -63,6 +63,9 @@ export class ProductVariant {
@Index({ unique: true, where: "deleted_at IS NOT NULL" })
upc: string
@Column()
rank: number
@Column({ type: "int" })
inventory_quantity: number