splatoon/competition_ranking_scores.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
);