summaryrefslogtreecommitdiff
path: root/app/static/wordfreqapp_schema.sql
blob: 46236fc967d4a248677415af2e06120346733e22 (plain)
1
2
3
4
5
6
7
8
9
10
CREATE TABLE user(name TEXT PRIMARY KEY, password TEXT, start_date TEXT, expiry_date TEXT);
CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE IF NOT EXISTS "article" (
	"article_id"	INTEGER PRIMARY KEY AUTOINCREMENT,
	"text"	TEXT,
	"source"	TEXT,
	"date"	TEXT,
	"level"	TEXT,
	"question"	TEXT
);