From f14ffec7635a79971fe53469ac6db386a4e97f56 Mon Sep 17 00:00:00 2001 From: Fredrik Ringqvist Date: Mon, 17 Dec 2018 11:45:23 +0100 Subject: [PATCH] P5-3327 Add new interior images for room 5 and 6 --- migrations/000.084.sql | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 migrations/000.084.sql diff --git a/migrations/000.084.sql b/migrations/000.084.sql new file mode 100644 index 0000000..0cc9f67 --- /dev/null +++ b/migrations/000.084.sql @@ -0,0 +1,15 @@ +-- P5-3327 Add room 05 and 06 interior images + +INSERT INTO rooms (id, name) VALUES + (23, 'room05_painting_landscape'), + (24, 'room05_painting_square'), + (25, 'room05_painting_standing'), + (26, 'room05_wallpaper_landscape'), + (27, 'room05_wallpaper_square'), + (28, 'room05_wallpaper_standing'), + (29, 'room06_painting_landscape'), + (30, 'room06_painting_square'), + (31, 'room06_painting_standing'), + (32, 'room06_wallpaper_landscape'), + (33, 'room06_wallpaper_square'), + (34, 'room06_wallpaper_standing');