P5-5483 fix article categories

This commit is contained in:
Martin Carlsson
2020-06-30 18:09:41 +02:00
committed by GitHub
parent 513a6a7ee3
commit aefa1b8950
+13
View File
@@ -0,0 +1,13 @@
-- P5-5483: fix article categories
--insert some more articles
insert into article_categories (name) values
('Wall murals'),
('DIY'),
('Wallpaper'),
('Designers'),
('Canvas prints');
-- fix some names
update article_categories set name = 'Trends & Inspiration' where name = 'Trends and inspiration';
update article_categories set name = 'Press room' where name = 'Pressroom';