- Add printAreaWidthMm and printAreaHeightMm fields to Product model - Create API endpoint to generate design specs with CM measurements - Add download button to order detail page - Specs include design elements with positions/sizes in centimeters
4 lines
165 B
SQL
4 lines
165 B
SQL
-- AlterTable
|
|
ALTER TABLE "Product" ADD COLUMN "printAreaHeightMm" INTEGER NOT NULL DEFAULT 280,
|
|
ADD COLUMN "printAreaWidthMm" INTEGER NOT NULL DEFAULT 200;
|