From e82d3ab9b2af53e7c0ab170838b90bba87b65354 Mon Sep 17 00:00:00 2001 From: Rikard Bartholf Date: Wed, 13 Mar 2024 10:39:15 +0100 Subject: [PATCH] Delete unused product groups from database (#378) * Delete unused product groups from database * Delete from product-groups and related tables * Fix migration naming --- migrations/000.467.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 migrations/000.467.sql diff --git a/migrations/000.467.sql b/migrations/000.467.sql new file mode 100644 index 0000000..4c97147 --- /dev/null +++ b/migrations/000.467.sql @@ -0,0 +1,5 @@ +-- 5 doityourselfframe +-- 6 designer-wallpaper + +DELETE FROM "product-printprices" WHERE groupid IN (5, 6); +DELETE FROM "product-groups" WHERE groupid IN (5, 6);