character_reco_bonus.sql 332 B

1234567
  1. CREATE TABLE IF NOT EXISTS `character_reco_bonus` (
  2. `charId` int(10) unsigned NOT NULL,
  3. `rec_have` tinyint(3) unsigned NOT NULL DEFAULT '0',
  4. `rec_left` tinyint(3) unsigned NOT NULL DEFAULT '0',
  5. `time_left` bigint(13) unsigned NOT NULL DEFAULT '0',
  6. UNIQUE KEY `charId` (`charId`)
  7. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;