study_id is no longer required for task events
This commit is contained in:
parent
c0655c9d03
commit
22432aaf2c
|
@ -10,7 +10,7 @@ from crc.services.ldap_service import LdapService
|
||||||
class TaskEventModel(db.Model):
|
class TaskEventModel(db.Model):
|
||||||
__tablename__ = 'task_event'
|
__tablename__ = 'task_event'
|
||||||
id = db.Column(db.Integer, primary_key=True)
|
id = db.Column(db.Integer, primary_key=True)
|
||||||
study_id = db.Column(db.Integer, db.ForeignKey('study.id'), nullable=False)
|
study_id = db.Column(db.Integer, db.ForeignKey('study.id'))
|
||||||
user_uid = db.Column(db.String, nullable=False) # In some cases the unique user id may not exist in the db yet.
|
user_uid = db.Column(db.String, nullable=False) # In some cases the unique user id may not exist in the db yet.
|
||||||
workflow_id = db.Column(db.Integer, db.ForeignKey('workflow.id'), nullable=False)
|
workflow_id = db.Column(db.Integer, db.ForeignKey('workflow.id'), nullable=False)
|
||||||
workflow_spec_id = db.Column(db.String, db.ForeignKey('workflow_spec.id'))
|
workflow_spec_id = db.Column(db.String, db.ForeignKey('workflow_spec.id'))
|
||||||
|
|
Loading…
Reference in New Issue