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/20230327235842_add_periods....

76 lines
415 B

INSERT INTO periods
(id, game, period_type, period_length)
VALUES
(
1,
1,
1,
1200
),
(
2,
1,
2,
900
),
(
3,
1,
3,
900
),
(
4,
2,
1,
1200
),
(
5,
2,
2,
1200
),
(
6,
2,
3,
1200
),
(
7,
3,
1,
720
),
(
8,
3,
2,
720
),
(
9,
3,
3,
1200
),
(
10,
4,
1,
1200
),
(
11,
4,
2,
1200
),
(
12,
4,
3,
1200
);