aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/register/migrations/0005_auto_20201002_1536.py
diff options
context:
space:
mode:
authorMatthew Lemon <matt@matthewlemon.com>2020-10-02 16:47:25 +0100
committerMatthew Lemon <matt@matthewlemon.com>2020-10-02 16:47:48 +0100
commit4a92042e7d1ebbca2537e49166cea1aa0a60aac6 (patch)
tree520f2be6c9e17a5d2e24278284e926be901fa97c /ctrack/register/migrations/0005_auto_20201002_1536.py
parent11b4886e07aafe9f7d0412adc6d7556f78ea1dc2 (diff)
fixed broken populate script
Diffstat (limited to '')
-rw-r--r--ctrack/register/migrations/0005_auto_20201002_1536.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/ctrack/register/migrations/0005_auto_20201002_1536.py b/ctrack/register/migrations/0005_auto_20201002_1536.py
new file mode 100644
index 0000000..2fce0b1
--- /dev/null
+++ b/ctrack/register/migrations/0005_auto_20201002_1536.py
@@ -0,0 +1,18 @@
+# Generated by Django 2.2.12 on 2020-10-02 15:36
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('register', '0004_auto_20201002_1516'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='engagementevent',
+ name='participants',
+ field=models.ManyToManyField(blank=True, to='organisations.Person'),
+ ),
+ ]