Reset DataLayer.edit_status migration
This commit is contained in:
parent
4e54a93ee0
commit
6ba8166f86
1 changed files with 8 additions and 4 deletions
|
@ -1,7 +1,6 @@
|
||||||
# Generated by Django 4.2.2 on 2023-09-07 06:27
|
# Generated by Django 4.2.2 on 2023-09-19 06:20
|
||||||
|
|
||||||
from django.db import migrations, models
|
from django.db import migrations, models
|
||||||
import umap.models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
class Migration(migrations.Migration):
|
||||||
|
@ -14,8 +13,13 @@ class Migration(migrations.Migration):
|
||||||
model_name="datalayer",
|
model_name="datalayer",
|
||||||
name="edit_status",
|
name="edit_status",
|
||||||
field=models.SmallIntegerField(
|
field=models.SmallIntegerField(
|
||||||
choices=[(1, "Everyone"), (2, "Editors only"), (3, "Owner only")],
|
choices=[
|
||||||
default=umap.models.get_default_edit_status,
|
(0, "Inherit"),
|
||||||
|
(1, "Everyone"),
|
||||||
|
(2, "Editors only"),
|
||||||
|
(3, "Owner only"),
|
||||||
|
],
|
||||||
|
default=0,
|
||||||
verbose_name="edit status",
|
verbose_name="edit status",
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in a new issue