Bläddra i källkod

- Fixed the definition of the KEY in the loginlog, thanks to TheUltraMage

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@6559 54d463be-8e91-2dee-dedb-b68131a5f0ec
skotlex 19 år sedan
förälder
incheckning
317b980ace
2 ändrade filer med 3 tillägg och 1 borttagningar
  1. 2 0
      Changelog-Trunk.txt
  2. 1 1
      sql-files/main.sql

+ 2 - 0
Changelog-Trunk.txt

@@ -4,6 +4,8 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK.  ALL UNTESTED BUGFIXES/FEATURES GO
 IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
 
 2006/05/11
+	* Fixed the definition of the KEY in the loginlog, thanks to TheUltraMage
+	  [Skotlex]
 	* NPC_POWERUP and NPC_AGIUP now cause a increase in hit/flee (respectively)
 	  of 40% per level. [Skotlex]
 	* Changed a bit the MAX_ZENY checks in trade.c to prevent overflows.

+ 1 - 1
sql-files/main.sql

@@ -411,7 +411,7 @@ CREATE TABLE `loginlog` (
   `user` varchar(32) NOT NULL default '',
   `rcode` tinyint(4) NOT NULL default '0',
   `log` varchar(255) NOT NULL default ''
-  KEY (`ip`),
+  INDEX (`ip`),
 ) TYPE=MyISAM;
 
 --