From e7ca49b71ab4eb01d4dd71d822025e91685b3e41 Mon Sep 17 00:00:00 2001 From: lena_smd02 Date: Sun, 12 Jul 2026 13:58:53 +0200 Subject: [PATCH] =?UTF-8?q?Navigation=20wieder=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/init_db.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/app/init_db.py b/app/init_db.py index 5c87400..e2feaff 100644 --- a/app/init_db.py +++ b/app/init_db.py @@ -20,6 +20,15 @@ INSERT INTO raeume (id, name, beschreibung, raetsel_frage, raetsel_antwort) VALU (2, 'Krypta', 'Kaltes Kerzenlicht flackert.', NULL, NULL), (3, 'Bibliothek', 'Staubige Bücher bis zur Decke.', NULL, NULL), (4, 'Schatzkammer', 'Eine verschlossene Truhe.', 'Wie viele Beine hat eine Spinne?', '8'); + +INSERT INTO ausgaenge (von_raum, richtung, nach_raum) VALUES + (1, 'links', 2), + (1, 'rechts', 3), + (2, 'zurück', 1), + (3, 'zurück', 1), + (2, 'vor', 4), + (2, 'zurück', 1), + (2, 'hoch', 3); """) db.commit()