You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
BEGIN TRANSACTION;
|
|
DROP TABLE IF EXISTS "data";
|
|
CREATE TABLE "data" (
|
|
"id" INTEGER NOT NULL,
|
|
"question" TEXT NOT NULL,
|
|
"source" TEXT NOT NULL,
|
|
"used" NUMERIC NOT NULL,
|
|
"when" TEXT,
|
|
PRIMARY KEY("id" AUTOINCREMENT)
|
|
);
|
|
COMMIT;
|