feat(products): seed 24 sku items with structured specs
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
-- AlterTable
|
||||
ALTER TABLE "Product" ADD COLUMN "lengthM" INTEGER,
|
||||
ADD COLUMN "productType" TEXT,
|
||||
ADD COLUMN "quantityPerBox" TEXT,
|
||||
ADD COLUMN "sleeveBrand" TEXT,
|
||||
ADD COLUMN "thicknessMicron" INTEGER,
|
||||
ADD COLUMN "widthMm" INTEGER;
|
||||
|
||||
@@ -165,6 +165,12 @@ model Product {
|
||||
id String @id @default(cuid())
|
||||
sku String @unique
|
||||
name String
|
||||
productType String?
|
||||
widthMm Int?
|
||||
lengthM Int?
|
||||
thicknessMicron Int?
|
||||
sleeveBrand String?
|
||||
quantityPerBox String?
|
||||
description String?
|
||||
isCustomizable Boolean @default(false)
|
||||
isActive Boolean @default(true)
|
||||
|
||||
Reference in New Issue
Block a user