summaryrefslogtreecommitdiff
path: root/hercules/templates/acc_reg_num_db.sql
blob: 71552c274320b2225dadf39f25957916fbcfbf60 (plain) (blame)
1
2
3
4
5
6
7
8
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;