summaryrefslogtreecommitdiff
path: root/app/sightings/migrations
diff options
context:
space:
mode:
Diffstat (limited to 'app/sightings/migrations')
-rw-r--r--app/sightings/migrations/0015_sighting_event.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/app/sightings/migrations/0015_sighting_event.py b/app/sightings/migrations/0015_sighting_event.py
new file mode 100644
index 0000000..8b35f6e
--- /dev/null
+++ b/app/sightings/migrations/0015_sighting_event.py
@@ -0,0 +1,20 @@
+# Generated by Django 4.1.3 on 2022-12-27 21:05
+
+from django.db import migrations, models
+import django.db.models.deletion
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('locations', '0028_auto_20200308_1152'),
+ ('sightings', '0014_rename_image_ap_featured_image'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='sighting',
+ name='event',
+ field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='locations.track'),
+ ),
+ ]