From 7065b032194a8463d42e0152edac63a5860769da Mon Sep 17 00:00:00 2001 From: Martin Date: Mon, 29 May 2017 16:44:57 +0200 Subject: [PATCH] P5-1352 set category description to '' where it has the same value as category h1 --- migrations/000.038.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 migrations/000.038.sql diff --git a/migrations/000.038.sql b/migrations/000.038.sql new file mode 100644 index 0000000..0cdbc4d --- /dev/null +++ b/migrations/000.038.sql @@ -0,0 +1,5 @@ +-- P5-1352: set description to '' where description and h1 is the same + +UPDATE category_texts SET wallpaper_description = '' WHERE wallpaper_description = wallpaper_h1; + +UPDATE category_texts SET canvas_description = '' WHERE canvas_description = canvas_h1; \ No newline at end of file