Skip to content

Commit

Permalink
Merge pull request kestasjk#753 from Alby1987/Fix-fullInstall.sql
Browse files Browse the repository at this point in the history
Fix fullInstall.sql, thanks
  • Loading branch information
kestasjk authored Mar 8, 2022
2 parents 6f92992 + 74866de commit 5b0f5a9
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions install/FullInstall/fullInstall.sql
Original file line number Diff line number Diff line change
Expand Up @@ -978,16 +978,8 @@ ALTER TABLE `wD_Backup_Games`
ADD COLUMN `grCalculated` INT NOT NULL DEFAULT 0,
ADD INDEX (`grCalculated`);

UPDATE `wD_Misc` SET `value` = '166' WHERE `name` = 'Version';

ALTER TABLE `wD_GameMessages` ADD `phaseMarker` ENUM('Finished','Pre-game','Diplomacy','Retreats','Builds') NULL DEFAULT NULL AFTER `gameID`;
ALTER TABLE `wD_Backup_GameMessages` ADD `phaseMarker` ENUM('Finished','Pre-game','Diplomacy','Retreats','Builds') NULL DEFAULT NULL AFTER `gameID`;

ALTER TABLE `wD_Users` ADD `optInFeatures` int(10) UNSIGNED NOT NULL DEFAULT 0 AFTER `tempBanReason`;

UPDATE `wD_Misc` SET `value` = '167' WHERE `name` = 'Version';


ALTER TABLE `wD_GameMessages` ADD `phaseMarker` ENUM('Finished','Pre-game','Diplomacy','Retreats','Builds') NULL DEFAULT NULL AFTER `gameID`;
ALTER TABLE `wD_Backup_GameMessages` ADD `phaseMarker` ENUM('Finished','Pre-game','Diplomacy','Retreats','Builds') NULL DEFAULT NULL AFTER `gameID`;

Expand Down Expand Up @@ -1016,4 +1008,4 @@ CREATE TABLE `wD_GameMessages_Redacted` (
PRIMARY KEY (`id`) USING BTREE,
KEY `toMember` (`gameID`,`toCountryID`) USING BTREE,
KEY `fromMember` (`gameID`,`fromCountryID`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

0 comments on commit 5b0f5a9

Please sign in to comment.