diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-04-04 21:04:47 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-04-04 21:04:47 +0000 |
commit | 43cd16d6223038e798e151df8038c81d18414353 (patch) | |
tree | 3c20c001fb9082454b4e32b7bbd55d523d5a9988 /tools/mob_db.pl | |
parent | 187ad9248b52c8fc083f63dc1155bb490e20f280 (diff) | |
download | hercules-43cd16d6223038e798e151df8038c81d18414353.tar.gz hercules-43cd16d6223038e798e151df8038c81d18414353.tar.bz2 hercules-43cd16d6223038e798e151df8038c81d18414353.tar.xz hercules-43cd16d6223038e798e151df8038c81d18414353.zip |
Replaced the TYPE keyword with ENGINE in all sql files, because this is the preferred alternative.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12480 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'tools/mob_db.pl')
-rwxr-xr-x | tools/mob_db.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mob_db.pl b/tools/mob_db.pl index e6eb859c4..ebcf2b74b 100755 --- a/tools/mob_db.pl +++ b/tools/mob_db.pl @@ -67,7 +67,7 @@ CREATE TABLE `mob_db` ( `DropCardid` smallint(9) unsigned NOT NULL default '0', `DropCardper` smallint(9) unsigned NOT NULL default '0', PRIMARY KEY (`ID`) -) TYPE=MyISAM; +) ENGINE=MyISAM; "; printf("%s\n",$create_table); while ($ligne=<STDIN>) |