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/20230327025705_create_game_...

17 lines
441 B

CREATE TABLE IF NOT EXISTS game_names (
id SERIAL PRIMARY KEY NOT NULL,
language INTEGER NOT NULL,
name VARCHAR(255) NOT NULL,
game INTEGER NOT NULL,
CONSTRAINT language_fk
FOREIGN KEY(language)
REFERENCES supported_languages(id)
ON DELETE RESTRICT,
CONSTRAINT game_fk
FOREIGN KEY(game)
REFERENCES games(id)
ON DELETE RESTRICT,
CONSTRAINT no_duplicated_game_names
UNIQUE (game, language)
);