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/20230325194303_add_position...

12 lines
263 B

-- Add up migration script here
INSERT INTO positions
(id, name, short_name)
VALUES
(1, 'Center', 'C'),
(2, 'Right-Wing', 'R'),
(3, 'Left-Wing', 'L'),
(4, 'Defence', 'D'),
(5, 'Goalie', 'G'),
(6, 'Head Coach', 'HC'),
(7, 'Assistant Coach', 'AC');