diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2020-03-03 08:38:30 +0000 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2020-03-03 08:38:40 +0000 |
commit | c7f9b3340944f58077747fcbd54ac721fd4cfc58 (patch) | |
tree | 4349326f15489998cb9151bf101e90c306fb5b11 /ctrack/organisations/management/commands | |
parent | eb9b5823265ed2641428b15fe406431c7a458c1c (diff) |
added extra fields to caf model
Diffstat (limited to 'ctrack/organisations/management/commands')
-rw-r--r-- | ctrack/organisations/management/commands/populate_db.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ctrack/organisations/management/commands/populate_db.py b/ctrack/organisations/management/commands/populate_db.py index 8a2ad84..31e2447 100644 --- a/ctrack/organisations/management/commands/populate_db.py +++ b/ctrack/organisations/management/commands/populate_db.py @@ -139,7 +139,7 @@ class Command(BaseCommand): etf1 = EngagementTypeFactory(descriptor="Information Notice") etf2 = EngagementTypeFactory(descriptor="Designation Letter") - etf3 = EngagementTypeFactory(descriptor="CAF Submission") + etf3 = EngagementTypeFactory(descriptor="CAF - Initial Submission") ee1 = EngagementEventFactory.create(type=etf1, user=user, participants=[p1, p2]) ee2 = EngagementEventFactory.create(type=etf2, user=user, participants=[p3]) @@ -163,6 +163,8 @@ class Command(BaseCommand): owner=random.choice(orgs), quality_grading__descriptor=random.choice(q_descriptors), confidence_grading__descriptor=random.choice(c_descriptors), + triage_review_date=None, + triage_review_inspector=None, ) for _ in range(35) ] |