@@ -6,10 +6,10 @@ VALUES (1, 'league1', 'league_name_1', 'league_description_1',
66 (2 , ' league2' , ' league_name_2' , ' league_description_2' ,
77 ' https://example2.com/' , ' https://example2.com/medium/' , ' https://example2.com/small/' );
88
9- INSERT INTO league_season (id, league_id, leaderboard_id, placement_games, season_number ,
10- name_key, start_date, end_date)
11- VALUES (1 , 1 , 1 , 10 , 1 , ' season1' , NOW(), DATE_ADD(NOW(), INTERVAL 1 MONTH)),
12- (2 , 2 , 2 , 10 , 2 , ' season2' , DATE_SUB(NOW(), INTERVAL 1 MONTH), DATE_SUB(NOW(), INTERVAL 1 DAY));
9+ INSERT INTO league_season (id, league_id, leaderboard_id, placement_games, placement_games_returning_player ,
10+ season_number, name_key, start_date, end_date)
11+ VALUES (1 , 1 , 1 , 10 , 3 , 1 , ' season1' , NOW(), DATE_ADD(NOW(), INTERVAL 1 MONTH)),
12+ (2 , 2 , 2 , 10 , 3 , 2 , ' season2' , DATE_SUB(NOW(), INTERVAL 1 MONTH), DATE_SUB(NOW(), INTERVAL 1 DAY));
1313
1414INSERT INTO league_season_division (id, league_season_id, division_index, name_key, description_key)
1515VALUES (1 , 1 , 1 , ' division_name_1' , ' division_description_1' ),
@@ -24,15 +24,15 @@ VALUES (1, 1, 1, 'subdivision_name_1', 'subdivision_description_1', 0.0, 1000.0,
2424 (3 , 2 , 3 , ' subdivision_name_3' , ' subdivision_description_3' , 0 .0 , 500 .0 , 50 ),
2525 (4 , 2 , 4 , ' subdivision_name_4' , ' subdivision_description_4' , 500 .0 , 1000 .0 , 550 );
2626
27- INSERT INTO league_season_score (id, league_season_id, subdivision_id, login_id, score, game_count)
28- VALUES (1 , 1 , 1 , 1 , 10 , 10 ),
29- (2 , 1 , 1 , 2 , 11 , 10 ),
30- (3 , 1 , 1 , 3 , 12 , 10 ),
31- (4 , 1 , 1 , 4 , 13 , 10 ),
32- (5 , 1 , 2 , 5 , 20 , 20 ),
33- (6 , 1 , 2 , 6 , 21 , 20 ),
34- (7 , 1 , 2 , 7 , 22 , 20 ),
35- (8 , 1 , 2 , 8 , 23 , 20 );
27+ INSERT INTO league_season_score (id, league_season_id, subdivision_id, login_id, score, game_count, returning_player )
28+ VALUES (1 , 1 , 1 , 1 , 10 , 10 , FALSE ),
29+ (2 , 1 , 1 , 2 , 11 , 10 , FALSE ),
30+ (3 , 1 , 1 , 3 , 12 , 10 , FALSE ),
31+ (4 , 1 , 1 , 4 , 13 , 10 , FALSE ),
32+ (5 , 1 , 2 , 5 , 20 , 20 , FALSE ),
33+ (6 , 1 , 2 , 6 , 21 , 20 , FALSE ),
34+ (7 , 1 , 2 , 7 , 22 , 20 , FALSE ),
35+ (8 , 1 , 2 , 8 , 23 , 20 , FALSE );
3636
3737INSERT INTO league_score_journal (id, login_id, league_season_id, subdivision_id_before, subdivision_id_after,
3838 score_before, score_after, game_count)
0 commit comments