aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/register/migrations
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2020-10-16 10:22:02 +0100
committerMatthew Lemon <lemon@matthewlemon.com>2020-10-16 10:22:02 +0100
commit2b11d0e43378c27b250e93e91b9bdc10346af44e (patch)
treedccbd0cd42e2400e3fa5fb363ab9fcd3616f9393 /ctrack/register/migrations
parent7637504292d8fd183af8f4bcbb968fc1b69cd8f7 (diff)
added basic lead and deputy inspector to organisation model
Diffstat (limited to 'ctrack/register/migrations')
-rw-r--r--ctrack/register/migrations/0003_auto_20201015_1955.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/ctrack/register/migrations/0003_auto_20201015_1955.py b/ctrack/register/migrations/0003_auto_20201015_1955.py
new file mode 100644
index 0000000..58d11c1
--- /dev/null
+++ b/ctrack/register/migrations/0003_auto_20201015_1955.py
@@ -0,0 +1,19 @@
+# Generated by Django 3.1.2 on 2020-10-15 19:55
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('organisations', '0002_auto_20201015_1955'),
+ ('register', '0002_auto_20201014_1605'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='singledatetimeevent',
+ name='participants',
+ field=models.ManyToManyField(blank=True, to='organisations.Person'),
+ ),
+ ]