mirror of
https://github.com/PretendoNetwork/splatoon.git
synced 2026-08-02 08:12:27 -05:00
10 lines
279 B
SQL
10 lines
279 B
SQL
CREATE TABLE IF NOT EXISTS competition_ranking_scores (
|
|
id bigserial PRIMARY KEY,
|
|
pid numeric(10) NOT NULL,
|
|
festival_id bigint NOT NULL,
|
|
score bigint NOT NULL,
|
|
team_id smallint NOT NULL,
|
|
team_score bigint NOT NULL,
|
|
is_first_upload boolean NOT NULL
|
|
);
|