mirror of
https://github.com/GSA/notifications-api.git
synced 2026-08-18 05:28:49 -04:00
Add archived column to jobs table with default value of false
This commit is contained in:
committed by
Alexey Bezhan
parent
e5fd027192
commit
641cb6ec36
@@ -1067,6 +1067,7 @@ class Job(db.Model):
|
||||
job_status = db.Column(
|
||||
db.String(255), db.ForeignKey('job_status.name'), index=True, nullable=False, default='pending'
|
||||
)
|
||||
archived = db.Column(db.Boolean, nullable=False, default=False)
|
||||
|
||||
|
||||
VERIFY_CODE_TYPES = [EMAIL_TYPE, SMS_TYPE]
|
||||
|
||||
Reference in New Issue
Block a user