heroes.sql 330 B

12345678
  1. CREATE TABLE IF NOT EXISTS `heroes` (
  2. `charId` INT UNSIGNED NOT NULL default 0,
  3. `class_id` decimal(3,0) NOT NULL default 0,
  4. `count` decimal(3,0) NOT NULL default 0,
  5. `played` decimal(1,0) NOT NULL default 0,
  6. `message` varchar(300) NOT NULL default '',
  7. PRIMARY KEY (`charId`)
  8. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;