summaryrefslogtreecommitdiff
path: root/hercules/templates
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-02-19 20:25:14 +0300
committerAndrei Karas <akaras@inbox.ru>2015-02-19 20:41:14 +0300
commitc6892d9631000859b04a203b1d2e9e5a828c2ffa (patch)
tree61b995fd164e32d31c5d96efd47f1a594faeae63 /hercules/templates
parent57a76c737b207c83cc0ef597ba470511acf2462e (diff)
downloadtools-c6892d9631000859b04a203b1d2e9e5a828c2ffa.tar.gz
tools-c6892d9631000859b04a203b1d2e9e5a828c2ffa.tar.bz2
tools-c6892d9631000859b04a203b1d2e9e5a828c2ffa.tar.xz
tools-c6892d9631000859b04a203b1d2e9e5a828c2ffa.zip
hercules: convert to party.sql
Diffstat (limited to 'hercules/templates')
-rw-r--r--hercules/templates/party.sql10
1 files changed, 10 insertions, 0 deletions
diff --git a/hercules/templates/party.sql b/hercules/templates/party.sql
new file mode 100644
index 0000000..69b2c64
--- /dev/null
+++ b/hercules/templates/party.sql
@@ -0,0 +1,10 @@
+CREATE TABLE IF NOT EXISTS `party` (
+ `party_id` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT,
+ `name` VARCHAR(24) NOT NULL DEFAULT '',
+ `exp` TINYINT(11) UNSIGNED NOT NULL DEFAULT '0',
+ `item` TINYINT(11) UNSIGNED NOT NULL DEFAULT '0',
+ `leader_id` INT(11) UNSIGNED NOT NULL DEFAULT '0',
+ `leader_char` INT(11) UNSIGNED NOT NULL DEFAULT '0',
+ PRIMARY KEY (`party_id`)
+) ENGINE=InnoDB;
+