mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 01:38:20 +00:00
238fc98ea5
- add weekly functionality for top scores - Fix shooting gallery score saving - remove extra leaderboard fetch
19 lines
867 B
SQL
19 lines
867 B
SQL
ALTER TABLE leaderboard
|
|
ADD COLUMN tertiaryScore FLOAT NOT NULL DEFAULT 0,
|
|
ADD COLUMN numWins INT NOT NULL DEFAULT 0,
|
|
ADD COLUMN timesPlayed INT NOT NULL DEFAULT 1,
|
|
MODIFY time INT NOT NULL DEFAULT 0;
|
|
|
|
/* Can only ALTER one column at a time... */
|
|
ALTER TABLE leaderboard CHANGE score primaryScore FLOAT NOT NULL DEFAULT 0;
|
|
ALTER TABLE leaderboard CHANGE time secondaryScore FLOAT NOT NULL DEFAULT 0 AFTER primaryScore;
|
|
|
|
/* A bit messy, but better than going through a bunch of code fixes all to be run once. */
|
|
UPDATE leaderboard SET
|
|
primaryScore = secondaryScore,
|
|
secondaryScore = 0 WHERE game_id IN (1, 44, 46, 47, 48, 49, 53, 103, 104, 108, 1901);
|
|
|
|
/* Do this last so we dont update entry times erroneously */
|
|
ALTER TABLE leaderboard
|
|
CHANGE last_played last_played TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP() ON UPDATE CURRENT_TIMESTAMP();
|