summaryrefslogtreecommitdiff
path: root/sql-files/upgrade_svn7768.sql
blob: c04d03973c2a7e40c480b869dec129c968189005 (plain) (blame)
1
2
3
4
5
6
7
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;