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/20230327030604_add_games.up...

28 lines
324 B

INSERT INTO games
(id, name, team_home, team_away)
VALUES
(
1,
'Game 1',
1, -- Bullseye
2 -- Seecats
),
(
2,
'Game 2',
1, -- Bullseye
2 -- Seecats
),
(
3,
'Game 3',
1, -- Bullseye
2 -- Seecats
),
(
4,
'Game 4',
1, -- Bullseye
2 -- Seecats
);