From 2fba89436d50c72d2717d376b9e416dfcb97a8a0 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Jun 27 2016 17:39:59 +0000 Subject: Add a notification flag on comment of tickets --- diff --git a/pagure/lib/model.py b/pagure/lib/model.py index 2475936..44ac79e 100644 --- a/pagure/lib/model.py +++ b/pagure/lib/model.py @@ -699,6 +699,8 @@ class IssueComment(BASE): ), nullable=False, index=True) + + notification = sa.Column(sa.Boolean, default=False, nullable=False) edited_on = sa.Column(sa.DateTime, nullable=True) editor_id = sa.Column( sa.Integer,