You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
CREATE TABLE IF NOT EXISTS questions (
|
|
id TEXT PRIMARY KEY,
|
|
theme TEXT NOT NULL,
|
|
text TEXT NOT NULL,
|
|
answer TEXT NOT NULL,
|
|
hint TEXT,
|
|
difficulty TEXT,
|
|
created_at TEXT NOT NULL DEFAULT (datetime('now'))
|
|
);
|