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/20230327021922_add_period_t...

17 lines
526 B

INSERT INTO period_types
(id, name, short_name, default_length)
VALUES
(1, 'first', '1', 1200),
(2, 'second', '2', 1200),
(3, 'third', '3', 1200),
(4, 'overtime', 'OT', 300),
(5, 'shootout', 'SO', 0),
(6, 'second overtime', '2OT', 1200),
(7, 'third overtime', '3OT', 1200),
(8, 'fourth overtime', '4OT', 1200),
(9, 'fifth overtime', '5OT', 1200),
(10, 'sixth overtime', '6OT', 1200),
(11, 'seventh overtime', '7OT', 1200),
(12, 'eighth overtime', '8OT', 1200),
(13, 'ninth overtime', '9OT', 1200);