forked from mrlan/EnglishPal
19 lines
552 B
SQL
19 lines
552 B
SQL
PRAGMA foreign_keys = OFF;
|
|
|
|
|
|
DROP TABLE IF EXISTS "main"."words";
|
|
CREATE TABLE "words" (
|
|
"user" TEXT NOT NULL,
|
|
"word" TEXT NOT NULL
|
|
);
|
|
|
|
|
|
INSERT INTO "main"."words" VALUES ('jack', 'numb');
|
|
INSERT INTO "main"."words" VALUES ('jack', 'faint');
|
|
INSERT INTO "main"."words" VALUES ('alice', 'tube');
|
|
INSERT INTO "main"."words" VALUES ('alice', 'cake');
|
|
INSERT INTO "main"."words" VALUES ('tom', 'kite');
|
|
INSERT INTO "main"."words" VALUES ('tom', 'fly');
|
|
INSERT INTO "main"."words" VALUES ('jack', 'be');
|
|
INSERT INTO "main"."words" VALUES ('jack', 'fly');
|