Skip to content
Snippets Groups Projects
Commit 03540d36 authored by GodKratos's avatar GodKratos
Browse files

BETA: Couple missing SQL updates

parent b30318da
No related branches found
No related tags found
No related merge requests found
...@@ -5,5 +5,8 @@ ALTER TABLE `character_offline_trade` ...@@ -5,5 +5,8 @@ ALTER TABLE `character_offline_trade`
MODIFY `charId` int(10) unsigned NOT NULL; MODIFY `charId` int(10) unsigned NOT NULL;
UPDATE `character_reco_bonus` SET `rec_have`=255 WHERE `rec_have`>255; UPDATE `character_reco_bonus` SET `rec_have`=255 WHERE `rec_have`>255;
UPDATE `character_reco_bonus` SET `rec_left`=255 WHERE `rec_left`>255;
ALTER TABLE `character_reco_bonus` ALTER TABLE `character_reco_bonus`
MODIFY `rec_have` tinyint(3) unsigned NOT NULL DEFAULT '0'; MODIFY `rec_have` tinyint(3) unsigned NOT NULL DEFAULT '0',
\ No newline at end of file MODIFY `rec_left` tinyint(3) unsigned NOT NULL DEFAULT '0';
...@@ -85,6 +85,9 @@ ALTER TABLE `olympiad_fights` ...@@ -85,6 +85,9 @@ ALTER TABLE `olympiad_fights`
MODIFY `start` bigint(13) unsigned NOT NULL DEFAULT '0', MODIFY `start` bigint(13) unsigned NOT NULL DEFAULT '0',
MODIFY `time` bigint(13) unsigned NOT NULL DEFAULT '0'; MODIFY `time` bigint(13) unsigned NOT NULL DEFAULT '0';
ALTER TABLE `posts`
MODIFY `post_date` bigint(13) unsigned NOT NULL DEFAULT '0';
ALTER TABLE `raidboss_spawnlist` ALTER TABLE `raidboss_spawnlist`
MODIFY `respawn_time` bigint(13) unsigned NOT NULL DEFAULT '0'; MODIFY `respawn_time` bigint(13) unsigned NOT NULL DEFAULT '0';
......
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