road leaderboard initial implementation

This commit is contained in:
wish
2022-08-19 03:53:28 +10:00
parent 56ae30745d
commit 1ba3d55566
3 changed files with 216 additions and 16 deletions

View File

@@ -0,0 +1,11 @@
BEGIN;
CREATE TABLE IF NOT EXISTS rengoku_score (
character_id integer PRIMARY KEY,
max_stages_mp integer,
max_points_mp integer,
max_stages_sp integer,
max_points_sp integer
);
END;