1
0
Fork 0
mirror of synced 2024-06-26 10:00:19 +12:00

missing migrations

This commit is contained in:
Nick Sweeting 2021-02-18 08:05:05 -05:00
parent 9ead76f9f8
commit acbce25201

View file

@ -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'),
),
]