From a186e277d7df6144c5f097d6e7318db0f068e7a1 Mon Sep 17 00:00:00 2001 From: Martyn Inglis Date: Fri, 4 Mar 2016 13:42:55 +0000 Subject: [PATCH] Sent count on jobs --- app/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/models.py b/app/models.py index c2bbf4765..564760283 100644 --- a/app/models.py +++ b/app/models.py @@ -162,6 +162,7 @@ class Job(db.Model): onupdate=datetime.datetime.now) status = db.Column(db.Enum(*JOB_STATUS_TYPES, name='job_status_types'), nullable=False, default='pending') notification_count = db.Column(db.Integer, nullable=False) + notifications_sent = db.Column(db.Integer, nullable=False) processing_started = db.Column( db.DateTime, index=False,