From 86098041fa4435e5d7008a5b3a1c43d98403958e Mon Sep 17 00:00:00 2001 From: Rebecca Law Date: Mon, 27 Nov 2017 13:39:35 +0000 Subject: [PATCH] Add reply_to_text to Notification model. This was missed out of the previous PR and needs to be there before the next PR is merged. --- app/models.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/models.py b/app/models.py index a1322cf75..a95c09a6f 100644 --- a/app/models.py +++ b/app/models.py @@ -978,6 +978,8 @@ class Notification(db.Model): created_by = db.relationship('User') created_by_id = db.Column(UUID(as_uuid=True), db.ForeignKey('users.id'), nullable=True) + reply_to_text = db.Column(db.String, nullable=True) + __table_args__ = ( db.ForeignKeyConstraint( ['template_id', 'template_version'],