Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

5 lines
384 B
SQL
Raw Permalink Normal View History

2015-09-10 16:05:22 +01:00
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');