summaryrefslogtreecommitdiff
path: root/app/static/wordfreqapp_schema.sql
blob: 62ed51b83cc9f13db2b21431b0383dd7851141e4 (plain)
1
2
3
4
5
6
7
8
CREATE TABLE user(name TEXT PRIMARY KEY, password TEXT, start_date TEXT, expiry_date TEXT);
CREATE TABLE IF NOT EXISTS "article" (
	`text`	TEXT,
	`source`	TEXT,
	`date`	TEXT,
	`level`	TEXT,
	`question`	TEXT
);