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/20230325040554_add_teams.up...

15 lines
255 B

-- Add up migration script here
INSERT INTO teams
(id, division)
VALUES
(1, 1),
(2, 1);
INSERT INTO team_names
(id, team, name, language)
VALUES
(1, 1, 'Bullseye', 1),
(2, 2, 'See Cats', 1),
(3, 1, 'bulle', 2),
(4, 2, 'Chats Voient', 2);