diff options
Diffstat (limited to 'db updates.sql')
-rw-r--r-- | db updates.sql | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/db updates.sql b/db updates.sql index e038771..b8b63a2 100644 --- a/db updates.sql +++ b/db updates.sql @@ -1,5 +1,9 @@ ALTER TABLE `db428221563`.`mapOfTheDay` DROP INDEX `UniqueTypeDate` , -ADD UNIQUE `UniqueTypeDate` ( `mapDate` , `mapType` ) +ADD UNIQUE `UniqueTypeDate` ( `mapDate` , `mapType` ); -ALTER TABLE `mapOfTheDay` ADD `championPointsWorth` INT NOT NULL DEFAULT '0' +ALTER TABLE `mapOfTheDay` ADD `championPointsWorth` INT NOT NULL DEFAULT '0'; +ALTER TABLE `users` ADD `totalMazes` INT NOT NULL DEFAULT '0', +ADD `totalMoves` INT NOT NULL DEFAULT '0'; + +ALTER TABLE `solutions` ADD `isTiedForHighScore` BOOLEAN NOT NULL DEFAULT '0';
\ No newline at end of file |