Skip to content
Snippets Groups Projects
Commit ffcc13ef authored by Patrick Jentsch's avatar Patrick Jentsch
Browse files

Add status to corpus model again...

parent 37d5802b
No related branches found
No related tags found
No related merge requests found
......@@ -437,6 +437,7 @@ class Corpus(db.Model):
id = db.Column(db.Integer, primary_key=True)
creation_date = db.Column(db.DateTime(), default=datetime.utcnow)
description = db.Column(db.String(255))
status = db.Column(db.String(16))
title = db.Column(db.String(32))
user_id = db.Column(db.Integer, db.ForeignKey('users.id'))
# Relationships
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment