mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-21 01:37:37 +01:00
DB/Misc: Fix server startup
ERROR 1264 (22003) at line 3: Out of range value for column 'AllowableRaces' at row 1
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
--
|
||||
UPDATE `quest_template` SET `AllowableRaces`=0 WHERE `id` IN (13094, 13095);
|
||||
UPDATE `quest_template` SET `AllowableRaces`=`AllowableRaces`|1|4|8|64|1024|2097152|16777216 WHERE id=13094;
|
||||
UPDATE `quest_template` SET `AllowableRaces`=`AllowableRaces`|2|16|32|128|256|512|33554432 WHERE id=13095;
|
||||
UPDATE `quest_template` SET `AllowableRaces`=`AllowableRaces`|1|4|8|64|1024|2097152 WHERE id=13094;
|
||||
UPDATE `quest_template` SET `AllowableRaces`=`AllowableRaces`|2|16|32|128|256|512 WHERE id=13095;
|
||||
|
||||
Reference in New Issue
Block a user