heroes.sql 296 B

12345678
  1. CREATE TABLE IF NOT EXISTS `heroes` (
  2. `charId` INT UNSIGNED NOT NULL default 0,
  3. `char_name` varchar(35) NOT NULL default '',
  4. `class_id` decimal(3,0) NOT NULL default 0,
  5. `count` decimal(3,0) NOT NULL default 0,
  6. `played` decimal(1,0) NOT NULL default 0,
  7. PRIMARY KEY (`charId`)
  8. );