bot_reported_char_data.sql 279 B

123456
  1. CREATE TABLE IF NOT EXISTS `bot_reported_char_data` (
  2. `botId` INT UNSIGNED NOT NULL DEFAULT 0,
  3. `reporterId` INT UNSIGNED NOT NULL DEFAULT 0,
  4. `reportDate` BIGINT(13) unsigned NOT NULL DEFAULT '0',
  5. PRIMARY KEY (`botId`, `reporterId`)
  6. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;