Преглед изворни кода

* Fixed: commented out loginlog in convert engine sql tables (loginlog table is in logs database now) [akrus]

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@13019 54d463be-8e91-2dee-dedb-b68131a5f0ec
akrus пре 17 година
родитељ
комит
0f18041ac7
3 измењених фајлова са 4 додато и 2 уклоњено
  1. 2 0
      Changelog-Trunk.txt
  2. 1 1
      sql-files/convert_engine_innodb.sql
  3. 1 1
      sql-files/convert_engine_myisam.sql

+ 2 - 0
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)

+ 1 - 1
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;

+ 1 - 1
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;