-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathalters.sql
227 lines (217 loc) · 7.8 KB
/
alters.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
-- Filter out duplicate entries for the same item id.
-- Duplicates occur when the same item was modified across patches.
-- Needs to happen before we drop the `patch` column.
DELETE `items1` FROM `items` `items1`
INNER JOIN `items` `items2`
WHERE
`items1`.`patch` < `items2`.`patch` AND
`items1`.`item_id` = `items2`.`item_id`;
-- Remove unwanted columns.
-- Feel free to alter this to keep or remove any columns you want.
ALTER TABLE `items`
DROP COLUMN `patch`,
DROP COLUMN `class`,
DROP COLUMN `subclass`,
DROP COLUMN `flags`,
DROP COLUMN `buy_count`,
DROP COLUMN `buy_price`,
DROP COLUMN `sell_price`,
DROP COLUMN `allowable_race`,
DROP COLUMN `required_skill`,
DROP COLUMN `required_skill_rank`,
DROP COLUMN `required_spell`,
DROP COLUMN `required_city_rank`,
DROP COLUMN `required_reputation_faction`,
DROP COLUMN `required_reputation_rank`,
DROP COLUMN `max_count`,
DROP COLUMN `stackable`,
DROP COLUMN `container_slots`,
DROP COLUMN `stat_type1`,
DROP COLUMN `stat_value1`,
DROP COLUMN `stat_type2`,
DROP COLUMN `stat_value2`,
DROP COLUMN `stat_type3`,
DROP COLUMN `stat_value3`,
DROP COLUMN `stat_type4`,
DROP COLUMN `stat_value4`,
DROP COLUMN `stat_type5`,
DROP COLUMN `stat_value5`,
DROP COLUMN `stat_type6`,
DROP COLUMN `stat_value6`,
DROP COLUMN `stat_type7`,
DROP COLUMN `stat_value7`,
DROP COLUMN `stat_type8`,
DROP COLUMN `stat_value8`,
DROP COLUMN `stat_type9`,
DROP COLUMN `stat_value9`,
DROP COLUMN `stat_type10`,
DROP COLUMN `stat_value10`,
DROP COLUMN `delay`,
DROP COLUMN `range_mod`,
DROP COLUMN `ammo_type`,
DROP COLUMN `dmg_min1`,
DROP COLUMN `dmg_max1`,
DROP COLUMN `dmg_type1`,
DROP COLUMN `dmg_min2`,
DROP COLUMN `dmg_max2`,
DROP COLUMN `dmg_type2`,
DROP COLUMN `dmg_min3`,
DROP COLUMN `dmg_max3`,
DROP COLUMN `dmg_type3`,
DROP COLUMN `dmg_min4`,
DROP COLUMN `dmg_max4`,
DROP COLUMN `dmg_type4`,
DROP COLUMN `dmg_min5`,
DROP COLUMN `dmg_max5`,
DROP COLUMN `dmg_type5`,
DROP COLUMN `block`,
DROP COLUMN `armor`,
DROP COLUMN `holy_res`,
DROP COLUMN `fire_res`,
DROP COLUMN `nature_res`,
DROP COLUMN `frost_res`,
DROP COLUMN `shadow_res`,
DROP COLUMN `arcane_res`,
DROP COLUMN `spellid_1`,
DROP COLUMN `spelltrigger_1`,
DROP COLUMN `spellcharges_1`,
DROP COLUMN `spellppmrate_1`,
DROP COLUMN `spellcooldown_1`,
DROP COLUMN `spellcategory_1`,
DROP COLUMN `spellcategorycooldown_1`,
DROP COLUMN `spellid_2`,
DROP COLUMN `spelltrigger_2`,
DROP COLUMN `spellcharges_2`,
DROP COLUMN `spellppmrate_2`,
DROP COLUMN `spellcooldown_2`,
DROP COLUMN `spellcategory_2`,
DROP COLUMN `spellcategorycooldown_2`,
DROP COLUMN `spellid_3`,
DROP COLUMN `spelltrigger_3`,
DROP COLUMN `spellcharges_3`,
DROP COLUMN `spellppmrate_3`,
DROP COLUMN `spellcooldown_3`,
DROP COLUMN `spellcategory_3`,
DROP COLUMN `spellcategorycooldown_3`,
DROP COLUMN `spellid_4`,
DROP COLUMN `spelltrigger_4`,
DROP COLUMN `spellcharges_4`,
DROP COLUMN `spellppmrate_4`,
DROP COLUMN `spellcooldown_4`,
DROP COLUMN `spellcategory_4`,
DROP COLUMN `spellcategorycooldown_4`,
DROP COLUMN `spellid_5`,
DROP COLUMN `spelltrigger_5`,
DROP COLUMN `spellcharges_5`,
DROP COLUMN `spellppmrate_5`,
DROP COLUMN `spellcooldown_5`,
DROP COLUMN `spellcategory_5`,
DROP COLUMN `spellcategorycooldown_5`,
DROP COLUMN `bonding`,
DROP COLUMN `page_text`,
DROP COLUMN `page_language`,
DROP COLUMN `page_material`,
DROP COLUMN `start_quest`,
DROP COLUMN `lock_id`,
DROP COLUMN `material`,
DROP COLUMN `sheath`,
DROP COLUMN `random_property`,
DROP COLUMN `max_durability`,
DROP COLUMN `area_bound`,
DROP COLUMN `map_bound`,
DROP COLUMN `duration`,
DROP COLUMN `bag_family`,
DROP COLUMN `disenchant_id`,
DROP COLUMN `food_type`,
DROP COLUMN `min_money_loot`,
DROP COLUMN `max_money_loot`,
DROP COLUMN `extra_flags`,
DROP COLUMN `other_team_entry`;
-- Optional, filter out items we're never going to use or want.
-- This configuration is semi-optimized for endgame gear.
DELETE FROM `items`
WHERE
(
-- Filter out low level items
-- Optional, filter out low quality items under a given lvl and ilvl (comment this if you don't want to filter these items out)
-- If you enable this, uncomment the brackets for the clause immediately below
-- WARNING: This may have unintended consequences! Some end game items are green ilvl 1! (or similar)
-- (
-- (
-- (`required_level` < 40 AND `item_level` < 40 AND `quality` < 3)
-- OR (`required_level` < 40 AND `item_level` = 0 AND `quality` < 3)
-- OR (`required_level` = 0 AND `item_level` < 40 AND `quality` < 3)
-- )
-- Exceptions
-- AND
-- `item_id` NOT IN (
-- 13335, -- Baron Mount
-- 19872, -- Raptor Mount
-- 19902, -- Tiger Mount
-- 20890, -- aq20 hilt
-- 20886, -- aq20 hilt
-- 18704, -- Mature Blue Dragon Sinew
-- 17204, -- Eye of Sulfuras
-- 17966, -- Onyxia Hide Backpack
-- 20933, -- Husk of the Old God
-- 20929, -- Carapace of the Old God
-- 1404, -- Tidal Charm
-- 2820, -- Nifty Stopwatch
-- 4984, -- Skull of Impending Doom
-- 19141 -- Luffa
-- )
-- )
-- OR
-- Filter out low quality items
-- (
`quality` IN (0) -- , 1, 2, 6
AND `item_id` NOT IN -- except for the following items
(
1404, -- Tidal Charm
2820, -- Nifty Stopwatch
4984, -- Skull of Impending Doom
19141 -- Luffa
)
-- )
)
-- Keep these items
AND `name` NOT LIKE '%Recipe:%'
AND `name` NOT LIKE '%Formula:%'
AND `name` NOT LIKE '%Pattern:%'
AND `name` NOT LIKE '%Schematic:%'
AND `name` NOT LIKE '%Plans:%';
-- Filter out items with bad words in them (including recipes, formulas, patters, schematics, and plans)
DELETE FROM `items`
WHERE
(
`name` LIKE '%deprecated%'
OR `name` LIKE '%unused%'
OR `name` LIKE '%QAEnchant%'
OR `name` LIKE '%ZZOLD%'
OR `name` LIKE BINARY '%OLD%'
OR `name` LIKE BINARY '%TEST%'
OR `name` LIKE '%(test)%'
OR `name` LIKE '63%'
OR `name` LIKE '90%'
OR `name` LIKE 'Green Hills of Stranglethorn%'
OR `name` LIKE 'Monster -%'
OR `name` LIKE 'Sayge\'s Fortune%'
OR `name` LIKE 'Shredder Operating Manual%'
OR `name` LIKE '%D0%'
OR `name` LIKE '%C0%'
OR `name` LIKE 'Internal%'
OR `name` LIKE '%[ph]%'
OR `name` = 'test'
-- OR `name` LIKE '% pound %' -- (fish)
OR `name` LIKE '% test%'
OR `name` LIKE '%test %'
OR `item_id` IN (5502, 6899, 13214, 6255, 16104)
)
AND `item_id` NOT IN (19971, 18361, 19160, 19971);
-- We dropped this column earlier, now we're going to recreate it the way we want it.
ALTER TABLE `items` ADD COLUMN `class` varchar(10) DEFAULT NULL AFTER `slot`;
-- Populate the slug (term for the URL friendly name)
-- (optional) We add this last to avoid populating ID's and then deleting them, leaving ugly gaps in the list of ID's
-- ALTER TABLE `items` ADD COLUMN `id` integer(11) unsigned NOT NULL AUTO_INCREMENT PRIMARY KEY FIRST;
-- (optional) Alternative to the previous option, we set the actual item ID to the primary key. (only after we've removed duplicates)
ALTER TABLE `items` ADD PRIMARY KEY(`item_id`);