svn -> git Migration

This commit is contained in:
KimLS
2013-02-16 16:14:39 -08:00
parent 88c9715fb0
commit da7347f76f
1174 changed files with 445622 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
CREATE TABLE `veteran_reward_templates` (
`claim_id` int(10) unsigned NOT NULL,
`name` varchar(64) NOT NULL,
`item_id` int(10) unsigned NOT NULL,
`charges` smallint(5) unsigned NOT NULL,
`reward_slot` tinyint(3) unsigned NOT NULL,
UNIQUE KEY `claim_reward` (`claim_id`,`reward_slot`),
KEY `claim_id` (`claim_id`)
) ENGINE=MyISAM;
CREATE TABLE `account_rewards` (
`account_id` int(10) unsigned NOT NULL,
`reward_id` int(10) unsigned NOT NULL,
`amount` int(10) unsigned NOT NULL,
UNIQUE KEY `account_reward` (`account_id`,`reward_id`),
KEY `account_id` (`account_id`)
) ENGINE=InnoDB;