Added canceled_on field to unified_jobs model

- When a job is canceled, the canceled_on field will populate with date/time
This commit is contained in:
Jake Jackson
2019-11-20 14:57:15 -05:00
committed by Ryan Petrello
parent 7b3d36ba53
commit d72896f9a6
4 changed files with 37 additions and 6 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 2.2.4 on 2019-11-25 20:53
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('main', '0100_v370_projectupdate_job_tags'),
]
operations = [
migrations.AddField(
model_name='unifiedjob',
name='canceled_on',
field=models.DateTimeField(db_index=True, default=None, editable=False, help_text='The date and time when the cancel request was sent.', null=True),
),
]