SQL fix for Homunc skills

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@7768 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
DracoRPG
2006-07-20 16:40:22 +00:00
parent 911eb096e3
commit f6d32063cf
3 changed files with 13 additions and 3 deletions

View File

@@ -338,7 +338,7 @@ CREATE TABLE `homunculus` (
`rename_flag` tinyint(2) NOT NULL default '0',
`vaporize` tinyint(2) NOT NULL default '0',
PRIMARY KEY (`homun_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
) TYPE=MyISAM;
--
-- Table structure for table `interlog`
@@ -547,8 +547,9 @@ CREATE TABLE `skill_homunculus` (
`homun_id` int(11) NOT NULL,
`id` int(11) NOT NULL,
`lv` smallint(6) NOT NULL,
PRIMARY KEY (`homun_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
PRIMARY KEY (`homun_id`,`id`),
KEY `homun_id` (`homun_id`)
) TYPE=MyISAM;
--
-- Table structure for table `sstatus`