Add spielstand table for game saves
This commit is contained in:
parent
a639f1b237
commit
c3d2e05058
1 changed files with 5 additions and 0 deletions
|
|
@ -22,6 +22,11 @@ CREATE TABLE IF NOT EXISTS ausgaenge (
|
||||||
nach_raum INTEGER
|
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
|
INSERT INTO raeume (id, name, beschreibung, raetsel_frage, raetsel_antwort) VALUES
|
||||||
(1, 'Schlafkapsel', 'Du erwachst aus dem Kryoschlaf. Die Notbeleuchtung flackert und das Schiff wirkt verlassen.', NULL, NULL),
|
(1, 'Schlafkapsel', 'Du erwachst aus dem Kryoschlaf. Die Notbeleuchtung flackert und das Schiff wirkt verlassen.', NULL, NULL),
|
||||||
(2, 'Brücke', 'Die Steuerzentrale ist dunkel. Mehrere Monitore zeigen Fehlermeldungen.', NULL, NULL),
|
(2, 'Brücke', 'Die Steuerzentrale ist dunkel. Mehrere Monitore zeigen Fehlermeldungen.', NULL, NULL),
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue