raw_item_details_armorset.sql 789 B

12345678910111213141516
  1. /* New Item Type 18 (Armor Set) table structure */
  2. CREATE TABLE `raw_item_details_armorset` (
  3. `id` int(10) unsigned NOT NULL auto_increment,
  4. `armorset_item_id` int(10) NOT NULL default '0',
  5. `item_id` int(10) NOT NULL default '0',
  6. `item_crc` int(10) NOT NULL default '0',
  7. `item_icon` smallint(5) unsigned NOT NULL default '0',
  8. `item_name` varchar(250) collate latin1_general_ci default '',
  9. `unknown_piece` int(10) unsigned NOT NULL default '0',
  10. `language_type` tinyint(3) NOT NULL default '0',
  11. PRIMARY KEY (`id`)
  12. ) ENGINE=MyISAM;
  13. alter table `raw_items` change `item_type` `item_type` enum('Normal','Armor','Food','Bag','Weapon','Ranged','Shield','Spell','Recipe','Book','House','Thrown','Bauble','House Container','Adornment','Pattern','Armor Set') default 'Normal' NOT NULL;