aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/caf/migrations
diff options
context:
space:
mode:
authorMatthew Lemon <matt@matthewlemon.com>2020-02-28 22:43:01 +0000
committerMatthew Lemon <matt@matthewlemon.com>2020-02-28 22:43:01 +0000
commit41a67d4231c47bb5dc44b541b7d360ac79d21194 (patch)
tree0accc50b11da0da6e8b81565eebd9d07789aaab5 /ctrack/caf/migrations
parent84f6f9e552a14345ce5ea2611ee39636be9ff60d (diff)
CAF factory basics but not essential services yet
Diffstat (limited to '')
-rw-r--r--ctrack/caf/migrations/0014_auto_20200228_2215.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/ctrack/caf/migrations/0014_auto_20200228_2215.py b/ctrack/caf/migrations/0014_auto_20200228_2215.py
new file mode 100644
index 0000000..f1d8c7a
--- /dev/null
+++ b/ctrack/caf/migrations/0014_auto_20200228_2215.py
@@ -0,0 +1,19 @@
+# Generated by Django 2.2.9 on 2020-02-28 22:15
+
+from django.db import migrations, models
+import django.db.models.deletion
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('caf', '0013_auto_20200227_0827'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='essentialservice',
+ name='caf',
+ field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='caf.CAF'),
+ ),
+ ]