diff options
Diffstat (limited to 'app/static/wordfreqapp_schema.sql')
-rw-r--r-- | app/static/wordfreqapp_schema.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/app/static/wordfreqapp_schema.sql b/app/static/wordfreqapp_schema.sql new file mode 100644 index 0000000..62ed51b --- /dev/null +++ b/app/static/wordfreqapp_schema.sql @@ -0,0 +1,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 +); |