aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/organisations/management/commands/populate_db.py
diff options
context:
space:
mode:
Diffstat (limited to 'ctrack/organisations/management/commands/populate_db.py')
-rw-r--r--ctrack/organisations/management/commands/populate_db.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/ctrack/organisations/management/commands/populate_db.py b/ctrack/organisations/management/commands/populate_db.py
index 3335a11..bcecc1a 100644
--- a/ctrack/organisations/management/commands/populate_db.py
+++ b/ctrack/organisations/management/commands/populate_db.py
@@ -3,7 +3,7 @@ from random import randint, choice
from django.core.management import BaseCommand
from django.core.management import CommandParser
-from ctrack.caf.tests.factories import GradingFactory
+from ctrack.caf.tests.factories import GradingFactory, CAFFileStoreFactory
from ctrack.organisations.models import AddressType
from ctrack.organisations.models import Mode
from ctrack.organisations.models import Submode
@@ -112,3 +112,6 @@ class Command(BaseCommand):
# Confidence gradings
for g in ["C1", "C2", "C3", "C4", "C5"]:
GradingFactory.create(descriptor=g, type="CONFIDENCE")
+
+ # File store
+ fs = CAFFileStoreFactory.create(physical_location_organistion=orgs[1])