diff options
author | DracoRPG <DracoRPG@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-20 16:40:22 +0000 |
---|---|---|
committer | DracoRPG <DracoRPG@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-20 16:40:22 +0000 |
commit | 66c7d0352d02bc74492730bdc66253617d385923 (patch) | |
tree | 3b96457e52be5be888ab317fb73eba7ec030b49b /sql-files/upgrade_svn7768.sql | |
parent | ca32e250d3ad395f20a6290f5af7181fdbd5c23e (diff) | |
download | hercules-66c7d0352d02bc74492730bdc66253617d385923.tar.gz hercules-66c7d0352d02bc74492730bdc66253617d385923.tar.bz2 hercules-66c7d0352d02bc74492730bdc66253617d385923.tar.xz hercules-66c7d0352d02bc74492730bdc66253617d385923.zip |
SQL fix for Homunc skills
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7768 54d463be-8e91-2dee-dedb-b68131a5f0ec
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 |