diff --git a/umap/migrations/0007_auto_20190416_1757.py b/umap/migrations/0007_auto_20190416_1757.py new file mode 100644 index 00000000..51cbbc13 --- /dev/null +++ b/umap/migrations/0007_auto_20190416_1757.py @@ -0,0 +1,18 @@ +# Generated by Django 2.2 on 2019-04-16 17:57 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('umap', '0006_auto_20190407_0719'), + ] + + operations = [ + migrations.AlterField( + model_name='map', + name='share_status', + field=models.SmallIntegerField(choices=[(1, 'everyone (public)'), (2, 'anyone with link'), (3, 'editors only'), (9, 'blocked')], default=1, verbose_name='share status'), + ), + ]