diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-02-18 19:33:42 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-02-18 19:33:42 +0300 |
commit | 561c8902706feec36316c270bcad0947da2a703d (patch) | |
tree | fcc113b5b193889d35e74ccc353c12c1c15105b4 /hercules/templates/skill.sql | |
parent | e1413bbc4716e63a89d281b931c2f30d4a7017cd (diff) | |
download | evol-tools-561c8902706feec36316c270bcad0947da2a703d.tar.gz evol-tools-561c8902706feec36316c270bcad0947da2a703d.tar.bz2 evol-tools-561c8902706feec36316c270bcad0947da2a703d.tar.xz evol-tools-561c8902706feec36316c270bcad0947da2a703d.zip |
hercules: convert to skill.sql
Diffstat (limited to 'hercules/templates/skill.sql')
-rw-r--r-- | hercules/templates/skill.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/hercules/templates/skill.sql b/hercules/templates/skill.sql new file mode 100644 index 0000000..d4a93df --- /dev/null +++ b/hercules/templates/skill.sql @@ -0,0 +1,8 @@ +CREATE TABLE IF NOT EXISTS `skill` ( + `char_id` INT(11) UNSIGNED NOT NULL DEFAULT '0', + `id` SMALLINT(11) UNSIGNED NOT NULL DEFAULT '0', + `lv` TINYINT(4) UNSIGNED NOT NULL DEFAULT '0', + `flag` TINYINT(1) UNSIGNED NOT NULL DEFAULT 0, + PRIMARY KEY (`char_id`,`id`) +) ENGINE=InnoDB; + |