diff options
Diffstat (limited to 'db updates.sql')
-rw-r--r-- | db updates.sql | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/db updates.sql b/db updates.sql index e2ea27f..7bd16c1 100644 --- a/db updates.sql +++ b/db updates.sql @@ -101,5 +101,8 @@ SET maps.name = 'Ultra Complex' WHERE mapOfTheDay.mapType = 5 AND (maps.name IS NULL OR maps.name = ''); ---Need to support bigger solutions for these crazy new unlimited-tower maps -ALTER TABLE `solutions` CHANGE `solution` `solution` VARCHAR( 4095 ) CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL
\ No newline at end of file +-- Need to support bigger solutions for these crazy new unlimited-tower maps +ALTER TABLE `solutions` CHANGE `solution` `solution` VARCHAR( 4095 ) CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL; + +-- Fix Typo +UPDATE unlocks SET name = 'Light Diagonal Cover' WHERE name = 'Light Diagnol Cover'
\ No newline at end of file |