Browse Source

missing migrations

Nick Sweeting 4 years ago
parent
commit
acbce25201
1 changed files with 18 additions and 0 deletions
  1. 18 0
      archivebox/core/migrations/0016_auto_20210218_1204.py

+ 18 - 0
archivebox/core/migrations/0016_auto_20210218_1204.py

@@ -0,0 +1,18 @@
+# Generated by Django 3.1.3 on 2021-02-18 12:04
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('core', '0015_auto_20210218_0730'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='snapshot',
+            name='tags',
+            field=models.ManyToManyField(blank=True, to='core.Tag'),
+        ),
+    ]