Merge pull request #1431 from alphagov/add-reply-to-model

Add reply_to_text to Notification model.
This commit is contained in:
Rebecca Law
2017-11-27 14:04:54 +00:00
committed by GitHub

View File

@@ -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'],