From cf52f753cfe1f06f4081510175d3584f122848af Mon Sep 17 00:00:00 2001 From: Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> Date: Mon, 24 Apr 2023 16:01:23 +0300 Subject: feat/db: multiple game/chapter support, improved map relations (#1) --- backend/database/chapters.sql | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 backend/database/chapters.sql (limited to 'backend/database/chapters.sql') diff --git a/backend/database/chapters.sql b/backend/database/chapters.sql new file mode 100644 index 0000000..f01ae9c --- /dev/null +++ b/backend/database/chapters.sql @@ -0,0 +1,17 @@ +INSERT INTO chapters(id, game_id, name) VALUES +(1, 1, 'The Coutesy Call'), +(2, 1, 'The Cold Boot'), +(3, 1, 'The Return'), +(4, 1, 'The Surprise'), +(5, 1, 'The Escape'), +(6, 1, 'The Fall'), +(7, 1, 'The Reunion'), +(8, 1, 'The Itch'), +(9, 1, 'The Part Where He Kills You'), +(10, 2, 'Introduction'), +(11, 2, 'Team Building'), +(12, 2, 'Mass And Velocity'), +(13, 2, 'Hard-Light Surfaces'), +(14, 2, 'Excursion Funnels'), +(15, 2, 'Mobility Gels'), +(16, 2, 'Art Therapy'); \ No newline at end of file -- cgit v1.2.3