Archive old migrations (#426)

* Archive old migrations

* Fix invalid placement of migrations
This commit is contained in:
Rikard Bartholf
2024-10-17 11:19:12 +02:00
committed by GitHub
parent 763262c108
commit ddcbd0afb0
500 changed files with 0 additions and 0 deletions
+13
View File
@@ -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);