Skip to content
Snippets Groups Projects
Commit ad5dc86b authored by MELERIX's avatar MELERIX
Browse files

BETA: Cleanup due [L5232].

parent f4e85821
No related branches found
No related tags found
No related merge requests found
This diff is collapsed.
CREATE TABLE IF NOT EXISTS `custom_armorsets` (
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`chest` smallint(5) unsigned NOT NULL DEFAULT '0',
`legs` smallint(5) unsigned NOT NULL DEFAULT '0',
`head` smallint(5) unsigned NOT NULL DEFAULT '0',
`gloves` smallint(5) unsigned NOT NULL DEFAULT '0',
`feet` smallint(5) unsigned NOT NULL DEFAULT '0',
`skill` varchar(70) NOT NULL DEFAULT '0-0;',
`shield` smallint(5) unsigned NOT NULL DEFAULT '0',
`shield_skill_id` smallint(5) unsigned NOT NULL DEFAULT '0',
`enchant6skill` smallint(5) unsigned NOT NULL DEFAULT '0',
`mw_legs` smallint(5) unsigned NOT NULL DEFAULT '0',
`mw_head` smallint(5) unsigned NOT NULL DEFAULT '0',
`mw_gloves` smallint(5) unsigned NOT NULL DEFAULT '0',
`mw_feet` smallint(5) unsigned NOT NULL DEFAULT '0',
`mw_shield` smallint(5) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`,`chest`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
\ No newline at end of file
DROP TABLE IF EXISTS armorsets;
DROP TABLE IF EXISTS custom_armorsets;
\ No newline at end of file
...@@ -9,7 +9,6 @@ DROP TABLE IF EXISTS access_levels; ...@@ -9,7 +9,6 @@ DROP TABLE IF EXISTS access_levels;
DROP TABLE IF EXISTS account_gsdata; DROP TABLE IF EXISTS account_gsdata;
DROP TABLE IF EXISTS admin_command_access_rights; DROP TABLE IF EXISTS admin_command_access_rights;
DROP TABLE IF EXISTS airships; DROP TABLE IF EXISTS airships;
DROP TABLE IF EXISTS armorsets;
DROP TABLE IF EXISTS auction; DROP TABLE IF EXISTS auction;
DROP TABLE IF EXISTS auction_bid; DROP TABLE IF EXISTS auction_bid;
DROP TABLE IF EXISTS auction_watch; DROP TABLE IF EXISTS auction_watch;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment