item_attributes.sql 292 B

1234567
  1. CREATE TABLE IF NOT EXISTS `item_attributes` (
  2. `itemId` int(11) NOT NULL default 0,
  3. `augAttributes` int(11) NOT NULL default -1,
  4. `augSkillId` int(11) NOT NULL default -1,
  5. `augSkillLevel` int(11) NOT NULL default -1,
  6. PRIMARY KEY (`itemId`)
  7. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;