EnglishPal/app/static/words.sql

19 lines
552 B
MySQL
Raw Normal View History

2022-06-18 22:16:18 +08:00
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');