Add missing migration for Map.share_status update
This commit is contained in:
parent
95a16b2aaf
commit
8972505f1b
1 changed files with 18 additions and 0 deletions
18
umap/migrations/0007_auto_20190416_1757.py
Normal file
18
umap/migrations/0007_auto_20190416_1757.py
Normal file
|
@ -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'),
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue