summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-04-04 21:04:47 +0000
committerultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-04-04 21:04:47 +0000
commit43cd16d6223038e798e151df8038c81d18414353 (patch)
tree3c20c001fb9082454b4e32b7bbd55d523d5a9988 /tools
parent187ad9248b52c8fc083f63dc1155bb490e20f280 (diff)
downloadhercules-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')
-rwxr-xr-xtools/item_db.pl2
-rwxr-xr-xtools/mob_db.pl2
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/item_db.pl b/tools/item_db.pl
index f19737f1e..38ffe5d0a 100755
--- a/tools/item_db.pl
+++ b/tools/item_db.pl
@@ -33,7 +33,7 @@ CREATE TABLE `item_db` (
`equip_script` text,
`unequip_script` text,
PRIMARY KEY (`id`)
-) TYPE=MyISAM;
+) ENGINE=MyISAM;
";
printf("%s\n",$create_table);
while ($ligne=<STDIN>)
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>)