summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
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>)