diff options
author | akrus <akrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-06-23 06:40:25 +0000 |
---|---|---|
committer | akrus <akrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-06-23 06:40:25 +0000 |
commit | 4bdd4910f9f95f80246a5e8566e28a15241639d9 (patch) | |
tree | cdb3c77ffdef589c1210bd2849c1412f2c146e36 | |
parent | 6139e002a09337acc34f8713f8d81d7e8aa63c79 (diff) | |
download | hercules-4bdd4910f9f95f80246a5e8566e28a15241639d9.tar.gz hercules-4bdd4910f9f95f80246a5e8566e28a15241639d9.tar.bz2 hercules-4bdd4910f9f95f80246a5e8566e28a15241639d9.tar.xz hercules-4bdd4910f9f95f80246a5e8566e28a15241639d9.zip |
* Fixed: replaced TYPEs with ENGINEs in SQL files (for better compatibility, TYPE is a synonym) [akrus]
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12880 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | Changelog-Trunk.txt | 2 | ||||
-rw-r--r-- | sql-files/main.sql | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index e9195bab2..02b052553 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/06/23 + * Fixed: replaced TYPEs with ENGINEs in SQL files (for better compatibility, TYPE is a synonym) [akrus] 2008/06/22 * Extended script command 'set' to return the variable reference (topic:190602). [FlavioJS] * Fixed a bug where the "OnMyMobDead" event wouldn't trigger if the mob was killed and never attacked. (bugreport:1725) [SketchyPhoenix] diff --git a/sql-files/main.sql b/sql-files/main.sql index 431c146b7..1dd36bbc1 100644 --- a/sql-files/main.sql +++ b/sql-files/main.sql @@ -108,7 +108,7 @@ CREATE TABLE `char` ( KEY `guild_id` (`guild_id`), KEY `name` (`name`), KEY `online` (`online`) -) TYPE=MyISAM AUTO_INCREMENT=150000; +) ENGINE=MyISAM AUTO_INCREMENT=150000; -- -- Table structure for table `charlog` @@ -434,7 +434,7 @@ CREATE TABLE `login` ( `state` int(11) unsigned NOT NULL default '0', PRIMARY KEY (`account_id`), KEY `name` (`userid`) -) TYPE=MyISAM AUTO_INCREMENT=2000000; +) ENGINE=MyISAM AUTO_INCREMENT=2000000; -- added standard accounts for servers, VERY INSECURE!!! -- inserted into the table called login which is above |