diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-09-05 21:12:03 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-09-05 21:12:03 +0900 |
| commit | 2fb0b6516b9731ca832a31f6b31515f4eb056cb1 (patch) | |
| tree | e2f4f82d783799f84a111179075e3da11cdb9e80 /backend/fixtures | |
| parent | 82d3cf35c3c6b85b48c94dd6301c8bf718669b8d (diff) | |
| download | iosdc-japan-2025-albatross-2fb0b6516b9731ca832a31f6b31515f4eb056cb1.tar.gz iosdc-japan-2025-albatross-2fb0b6516b9731ca832a31f6b31515f4eb056cb1.tar.zst iosdc-japan-2025-albatross-2fb0b6516b9731ca832a31f6b31515f4eb056cb1.zip | |
feat(backend): support swift language
Diffstat (limited to 'backend/fixtures')
| -rw-r--r-- | backend/fixtures/dev.sql | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/backend/fixtures/dev.sql b/backend/fixtures/dev.sql index 1df6353..bc25011 100644 --- a/backend/fixtures/dev.sql +++ b/backend/fixtures/dev.sql @@ -13,15 +13,15 @@ VALUES (3, 'password', '$2a$10$F/TePpu1pyJRWgn0e6A14.VL9D/17sRxT/2DyZ2Oi4Eg/lR6n7JcK'); INSERT INTO problems -(title, description, sample_code) +(title, description, language, sample_code) VALUES - ('TEST problem 1', 'This is TEST problem 1', 'sample code'), - ('TEST problem 2', 'This is TEST problem 2', 'sample code'), - ('TEST problem 3', 'This is TEST problem 3', 'sample code'), - ('TEST problem 4', 'This is TEST problem 4', 'sample code'), - ('TEST problem 5', 'This is TEST problem 5', 'sample code'), - ('TEST problem 6', 'This is TEST problem 6', 'sample code'), - ('TEST problem 7', 'This is TEST problem 7', 'sample code'); + ('TEST problem 1', 'This is TEST problem 1', 'php', 'sample code'), + ('TEST problem 2', 'This is TEST problem 2', 'php', 'sample code'), + ('TEST problem 3', 'This is TEST problem 3', 'php', 'sample code'), + ('TEST problem 4', 'This is TEST problem 4', 'php', 'sample code'), + ('TEST problem 5', 'This is TEST problem 5', 'php', 'sample code'), + ('TEST problem 6', 'This is TEST problem 6', 'php', 'sample code'), + ('TEST problem 7', 'This is TEST problem 7', 'php', 'sample code'); INSERT INTO games (game_type, is_public, display_name, duration_seconds, problem_id) |
