olympiad_nobles.sql 825 B

1234567891011121314
  1. CREATE TABLE IF NOT EXISTS `olympiad_nobles` (
  2. `charId` int(10) unsigned NOT NULL DEFAULT 0,
  3. `class_id` tinyint(3) unsigned NOT NULL DEFAULT 0,
  4. `olympiad_points` int(10) unsigned NOT NULL DEFAULT 0,
  5. `competitions_done` smallint(3) unsigned NOT NULL DEFAULT 0,
  6. `competitions_won` smallint(3) unsigned NOT NULL DEFAULT 0,
  7. `competitions_lost` smallint(3) unsigned NOT NULL DEFAULT 0,
  8. `competitions_drawn` smallint(3) unsigned NOT NULL DEFAULT 0,
  9. `competitions_done_week` tinyint(3) unsigned NOT NULL DEFAULT 0,
  10. `competitions_done_week_classed` tinyint(3) unsigned NOT NULL DEFAULT 0,
  11. `competitions_done_week_non_classed` tinyint(3) unsigned NOT NULL DEFAULT 0,
  12. `competitions_done_week_team` tinyint(3) unsigned NOT NULL DEFAULT 0,
  13. PRIMARY KEY (`charId`)
  14. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;