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/20230324221305_create_divis...

10 lines
234 B

CREATE TABLE IF NOT EXISTS divisions (
id SERIAL PRIMARY KEY NOT NULL,
league INTEGER NOT NULL,
name VARCHAR(255) NOT NULL,
CONSTRAINT league_fk
FOREIGN KEY(league)
REFERENCES leagues(id)
ON DELETE RESTRICT
);