diff options
-rw-r--r-- | Changelog-Trunk.txt | 2 | ||||
-rw-r--r-- | sql-files/convert_engine_innodb.sql | 2 | ||||
-rw-r--r-- | sql-files/convert_engine_myisam.sql | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index ab1104b76..1a12f77fb 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -3,6 +3,8 @@ Date Added AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO INTO TRUNK. IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. +2008/07/31 + * Fixed: commented out loginlog in convert engine sql tables (loginlog table is in logs database now) [akrus] 2008/07/30 * Fixed TXT storage code handling storage incorrectly (bugreport:1928) * AccountDB_TXT will now correctly read inconsistent EOLs (bugreport:1934) diff --git a/sql-files/convert_engine_innodb.sql b/sql-files/convert_engine_innodb.sql index bc926373c..1402886c7 100644 --- a/sql-files/convert_engine_innodb.sql +++ b/sql-files/convert_engine_innodb.sql @@ -24,7 +24,7 @@ ALTER TABLE `ipbanlist` ENGINE = InnoDB; #ALTER TABLE `item_db` ENGINE = InnoDB; #ALTER TABLE `item_db2` ENGINE = InnoDB; ALTER TABLE `login` ENGINE = InnoDB; -ALTER TABLE `loginlog` ENGINE = InnoDB; +#ALTER TABLE `loginlog` ENGINE = InnoDB; ALTER TABLE `mail` ENGINE = InnoDB; ALTER TABLE `mapreg` ENGINE = InnoDB; ALTER TABLE `memo` ENGINE = InnoDB; diff --git a/sql-files/convert_engine_myisam.sql b/sql-files/convert_engine_myisam.sql index 35414c083..336d6ce9d 100644 --- a/sql-files/convert_engine_myisam.sql +++ b/sql-files/convert_engine_myisam.sql @@ -24,7 +24,7 @@ ALTER TABLE `ipbanlist` ENGINE = MyISAM; #ALTER TABLE `item_db` ENGINE = MyISAM; #ALTER TABLE `item_db2` ENGINE = MyISAM; ALTER TABLE `login` ENGINE = MyISAM; -ALTER TABLE `loginlog` ENGINE = MyISAM; +#ALTER TABLE `loginlog` ENGINE = MyISAM; ALTER TABLE `mail` ENGINE = MyISAM; ALTER TABLE `mapreg` ENGINE = MyISAM; ALTER TABLE `memo` ENGINE = MyISAM; |