You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ibihf/migrations/20230324221303_create_leagu...

17 lines
455 B

CREATE TABLE IF NOT EXISTS league_names (
id SERIAL PRIMARY KEY NOT NULL,
language INTEGER NOT NULL,
name VARCHAR(255) NOT NULL,
league INTEGER NOT NULL,
CONSTRAINT language_fk
FOREIGN KEY(language)
REFERENCES supported_languages(id)
ON DELETE RESTRICT,
CONSTRAINT league_fk
FOREIGN KEY(league)
REFERENCES leagues(id)
ON DELETE RESTRICT,
CONSTRAINT no_duplicated_league_names
UNIQUE (league, language)
);