Add migrations for models label changes
This commit is contained in:
parent
0ec481ed07
commit
a0654776f6
1 changed files with 23 additions and 0 deletions
|
@ -0,0 +1,23 @@
|
|||
# Generated by Django 4.2.2 on 2023-07-20 09:54
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('umap', '0009_star'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='map',
|
||||
name='edit_status',
|
||||
field=models.SmallIntegerField(choices=[(1, 'Everyone'), (2, 'Editors only'), (3, 'Owner only')], default=3, verbose_name='edit status'),
|
||||
),
|
||||
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