cursed_weapons.sql 349 B

12345678910
  1. CREATE TABLE IF NOT EXISTS `cursed_weapons` (
  2. `itemId` INT,
  3. `charId` INT UNSIGNED NOT NULL DEFAULT 0,
  4. `playerKarma` INT DEFAULT 0,
  5. `playerPkKills` INT DEFAULT 0,
  6. `nbKills` INT DEFAULT 0,
  7. `endTime` bigint(13) unsigned NOT NULL DEFAULT '0',
  8. PRIMARY KEY (`itemId`),
  9. KEY `charId` (`charId`)
  10. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;