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:
ariel-
2016-02-18 20:56:53 -03:00
parent 410cbecebe
commit e4c4baa7cb

View File

@@ -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;