From 0eca1142485b281a9b6ad85b4e6ee609b0806b74 Mon Sep 17 00:00:00 2001 From: Martin Carlsson Date: Tue, 24 Sep 2019 14:01:08 +0200 Subject: [PATCH] P5-4080 Add support for framed prints --- migrations/000.127.sql | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 migrations/000.127.sql diff --git a/migrations/000.127.sql b/migrations/000.127.sql new file mode 100644 index 0000000..e01bf6b --- /dev/null +++ b/migrations/000.127.sql @@ -0,0 +1,13 @@ +-- P5-4080: Add support for framed prints + +INSERT INTO "product-groups" ("groupid", "group") + VALUES (8, 'framed-print'); + +INSERT INTO "product-materials" ("materialid", "material", "price") + VALUES (6, 'premium-framed-print', 1); + +INSERT INTO "product-printprices" (groupid, collectionid, materialid, price) VALUES + (8, 1, 6, 1), + (8, 2, 6, 1), + (8, 3, 6, 1), + (8, 4, 6, 1);