From 8972505f1b5d721254f697076d2bb9c39a8c577f Mon Sep 17 00:00:00 2001 From: Yohan Boniface Date: Tue, 16 Apr 2019 20:30:42 +0200 Subject: [PATCH] Add missing migration for Map.share_status update --- umap/migrations/0007_auto_20190416_1757.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 umap/migrations/0007_auto_20190416_1757.py 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'), + ), + ]