mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-13 15:34:38 +01:00
11 lines
204 B
PL/PgSQL
11 lines
204 B
PL/PgSQL
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; |