diff options
| author | nsfisis <nsfisis@gmail.com> | 2024-08-05 22:01:08 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2024-08-05 22:01:08 +0900 |
| commit | dff6cfdc04fb7c93f74a53787539702cf6b982a9 (patch) | |
| tree | bdb238c530826b6545f7208b0e4bb75051ebb446 /backend/fixtures | |
| parent | b0ff29a3c88bd3014cc966c619683c8d7e33d703 (diff) | |
| parent | a5eaed753368a1fa701a0503dcb6522e19ccbcb0 (diff) | |
| download | phperkaigi-2025-albatross-dff6cfdc04fb7c93f74a53787539702cf6b982a9.tar.gz phperkaigi-2025-albatross-dff6cfdc04fb7c93f74a53787539702cf6b982a9.tar.zst phperkaigi-2025-albatross-dff6cfdc04fb7c93f74a53787539702cf6b982a9.zip | |
Merge branch 'fix/multiplayer'
Diffstat (limited to 'backend/fixtures')
| -rw-r--r-- | backend/fixtures/dev.sql | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/backend/fixtures/dev.sql b/backend/fixtures/dev.sql index e8b8716..89f709a 100644 --- a/backend/fixtures/dev.sql +++ b/backend/fixtures/dev.sql @@ -20,7 +20,8 @@ VALUES ('TEST problem 3', 'This is TEST problem 3'), ('TEST problem 4', 'This is TEST problem 4'), ('TEST problem 5', 'This is TEST problem 5'), - ('TEST problem 6', 'This is TEST problem 6'); + ('TEST problem 6', 'This is TEST problem 6'), + ('TEST problem 7', 'This is TEST problem 7'); INSERT INTO games (game_type, state, display_name, duration_seconds, problem_id) @@ -30,7 +31,8 @@ VALUES ('1v1', 'finished', 'TEST game 3', 180, 3), ('multiplayer', 'waiting_start', 'TEST game 4', 180, 4), ('multiplayer', 'closed', 'TEST game 5', 180, 5), - ('multiplayer', 'finished', 'TEST game 6', 180, 6); + ('multiplayer', 'finished', 'TEST game 6', 180, 6), + ('multiplayer', 'waiting_entries', 'TEST game 7', 180, 7); INSERT INTO game_players (game_id, user_id) @@ -46,9 +48,11 @@ VALUES (5, 1), (5, 2), (6, 1), - (6, 2); + (6, 2), + (7, 1); INSERT INTO testcases (problem_id, stdin, stdout) VALUES (4, '', '42'), + (7, '', '42'); |
