diff options
author | BlueRaja <BlueRaja.admin@gmail.com> | 2013-02-22 22:43:42 -0600 |
---|---|---|
committer | BlueRaja <BlueRaja.admin@gmail.com> | 2013-02-22 22:44:06 -0600 |
commit | 438184ffc7ec1e447668c22b09416c984a9c12f2 (patch) | |
tree | 63aef69175fecee664947c15eb04da346049cebb /db updates.sql | |
parent | af6a93b30abe395b6d967c87c95ee3053ed6adb3 (diff) | |
download | pathery-438184ffc7ec1e447668c22b09416c984a9c12f2.tar.xz |
BUGFIX: Solution column not large enough! (make sure you run this code on your test db snap)
Diffstat (limited to 'db updates.sql')
-rw-r--r-- | db updates.sql | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/db updates.sql b/db updates.sql index 938e46d..e2ea27f 100644 --- a/db updates.sql +++ b/db updates.sql @@ -99,4 +99,7 @@ UPDATE maps INNER JOIN mapOfTheDay ON maps.Id = mapOfTheDay.mapId SET maps.name = 'Ultra Complex' WHERE mapOfTheDay.mapType = 5 -AND (maps.name IS NULL OR maps.name = '');
\ No newline at end of file +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 |