aboutsummaryrefslogtreecommitdiff
path: root/app/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/models.py')
-rw-r--r--app/models.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/app/models.py b/app/models.py
index 06dfbc2..03ba884 100644
--- a/app/models.py
+++ b/app/models.py
@@ -81,8 +81,7 @@ class Task(db.Model):
class Annotation(db.Model):
id = db.Column(db.Integer, primary_key=True)
- time_start = db.Column(db.Integer)
- time_end = db.Column(db.Integer)
+ cp_index = db.Column(db.Integer)
task = db.relation("Task")
task_id = db.Column(db.Integer, db.ForeignKey("task.id"))