Skip to content

Commit

Permalink
Clean up of Global/World map mix-up in DB
Browse files Browse the repository at this point in the history
  • Loading branch information
spaprzycki committed Sep 10, 2015
1 parent 39d441e commit ac28255
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions sql-schema/070.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
UPDATE widgets SET widget_title = 'World map' WHERE widget = 'worldmap';
UPDATE widgets SET widget_title = 'Globe map' WHERE widget = 'globe';
UPDATE users_widgets SET title = 'World Map' WHERE widget_id = (SELECT widget_id FROM widgets WHERE widget = 'worldmap');
UPDATE users_widgets SET title = 'Globe Map' WHERE widget_id = (SELECT widget_id FROM widgets WHERE widget = 'globe');

0 comments on commit ac28255

Please sign in to comment.