diff options
Diffstat (limited to 'sql-files/upgrade_svn7768.sql')
-rw-r--r-- | sql-files/upgrade_svn7768.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sql-files/upgrade_svn7768.sql b/sql-files/upgrade_svn7768.sql new file mode 100644 index 000000000..69f6f1333 --- /dev/null +++ b/sql-files/upgrade_svn7768.sql @@ -0,0 +1,8 @@ +DROP TABLE IF EXISTS `skill_homunculus`;
+CREATE TABLE `skill_homunculus` (
+ `homun_id` int(11) NOT NULL,
+ `id` int(11) NOT NULL,
+ `lv` smallint(6) NOT NULL,
+ PRIMARY KEY (`homun_id`,`id`),
+ KEY `homun_id` (`homun_id`)
+) TYPE=MyISAM;
\ No newline at end of file |