diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-02-19 00:02:49 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-02-19 00:02:49 +0300 |
commit | 3c410c7ab75a2f730ef41ca8d0c55fe1fc23ac13 (patch) | |
tree | 254962c8e383822ca6da391d40ef4d9c97aadd4f /hercules/templates | |
parent | 3a4c2dc2c190be9c0ecd3407183ccf0b01ced722 (diff) | |
download | evol-tools-3c410c7ab75a2f730ef41ca8d0c55fe1fc23ac13.tar.gz evol-tools-3c410c7ab75a2f730ef41ca8d0c55fe1fc23ac13.tar.bz2 evol-tools-3c410c7ab75a2f730ef41ca8d0c55fe1fc23ac13.tar.xz evol-tools-3c410c7ab75a2f730ef41ca8d0c55fe1fc23ac13.zip |
hercules: convert to acc_reg_num_db.sql
Diffstat (limited to 'hercules/templates')
-rw-r--r-- | hercules/templates/acc_reg_num_db.sql | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/hercules/templates/acc_reg_num_db.sql b/hercules/templates/acc_reg_num_db.sql new file mode 100644 index 0000000..71552c2 --- /dev/null +++ b/hercules/templates/acc_reg_num_db.sql @@ -0,0 +1,9 @@ +CREATE TABLE IF NOT EXISTS `acc_reg_num_db` ( + `account_id` INT(11) UNSIGNED NOT NULL DEFAULT '0', + `key` VARCHAR(32) BINARY NOT NULL DEFAULT '', + `index` INT(11) UNSIGNED NOT NULL DEFAULT '0', + `value` INT(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`account_id`,`key`,`index`), + KEY `account_id` (`account_id`) +) ENGINE=InnoDB; + |