item_attributes.sql 199 B

12345
  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. PRIMARY KEY (`itemId`)
  5. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;