aboutsummaryrefslogtreecommitdiff
path: root/todo/db/init.py
diff options
context:
space:
mode:
authorJoris2021-10-16 20:09:55 +0200
committerJoris2021-10-16 20:09:56 +0200
commita54b7776320ef5aa02e6ef7378c2a011dc454885 (patch)
tree0cc69107fc3db626ade1b91e70966f9ecff19678 /todo/db/init.py
parent9d8b61da195bf8de14159f1222a693d62ceebacd (diff)
downloadtodo-a54b7776320ef5aa02e6ef7378c2a011dc454885.tar.gz
todo-a54b7776320ef5aa02e6ef7378c2a011dc454885.tar.bz2
todo-a54b7776320ef5aa02e6ef7378c2a011dc454885.zip
Introduce due date
Also: - Remove duration, difficulty and priority, - Translate to french.
Diffstat (limited to 'todo/db/init.py')
-rw-r--r--todo/db/init.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/todo/db/init.py b/todo/db/init.py
index 5d847a3..0fb9ec1 100644
--- a/todo/db/init.py
+++ b/todo/db/init.py
@@ -18,9 +18,7 @@ def init(path):
" created_at INTEGER NOT NULL,"
" updated_at INTEGER NOT NULL,"
" name TEXT NOT NULL,"
- " duration INTEGER,"
- " difficulty INT,"
- " priority INT,"
+ " due_date TEXT,"
" description TEXT,"
" status TEXT"
" )")