Tabelle Spielstand
This commit is contained in:
parent
98ab5f351d
commit
0a8aab6d94
1 changed files with 6 additions and 0 deletions
|
|
@ -27,6 +27,12 @@ CREATE TABLE spieler (
|
||||||
start_zeit REAL,
|
start_zeit REAL,
|
||||||
fertig_zeit REAL
|
fertig_zeit REAL
|
||||||
);
|
);
|
||||||
|
|
||||||
|
CREATE TABLE IF NOT EXISTS spielstand (
|
||||||
|
spieler TEXT PRIMARY KEY,
|
||||||
|
raum_id INTEGER
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
INSERT INTO raeume (id, name, beschreibung, raetsel_frage, raetsel_antwort) VALUES
|
INSERT INTO raeume (id, name, beschreibung, raetsel_frage, raetsel_antwort) VALUES
|
||||||
(1, 'Eingangshalle', 'Eine schwere Tür fällt hinter dir zu. Zwei Gänge führen ins Dunkel.', NULL, NULL),
|
(1, 'Eingangshalle', 'Eine schwere Tür fällt hinter dir zu. Zwei Gänge führen ins Dunkel.', NULL, NULL),
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue