Tabelle spielstand
This commit is contained in:
parent
e7ca49b71a
commit
ea38bc6f25
1 changed files with 5 additions and 0 deletions
|
|
@ -15,6 +15,11 @@ CREATE TABLE raeume (
|
|||
);
|
||||
CREATE TABLE ausgaenge (von_raum INTEGER, richtung TEXT, nach_raum INTEGER);
|
||||
|
||||
CREATE TABLE IF NOT EXISTS spielstand (
|
||||
spieler TEXT PRIMARY KEY,
|
||||
raum_id INTEGER
|
||||
);
|
||||
|
||||
INSERT INTO raeume (id, name, beschreibung, raetsel_frage, raetsel_antwort) VALUES
|
||||
(1, 'Eingangshalle', 'Eine schwere Tür fällt hinter dir zu.', NULL, NULL),
|
||||
(2, 'Krypta', 'Kaltes Kerzenlicht flackert.', NULL, NULL),
|
||||
|
|
|
|||
Loading…
Reference in a new issue