Skip to content

Commit 1bf5b00

Browse files
committed
added missing default permission migration
1 parent 17baedd commit 1bf5b00

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Generated by Django 3.1.12 on 2021-09-30 13:36
2+
3+
from django.db import migrations, models
4+
import gsmap.models
5+
6+
7+
class Migration(migrations.Migration):
8+
9+
dependencies = [
10+
('gsmap', '0022_delete_siteconfiguration'),
11+
]
12+
13+
operations = [
14+
migrations.AlterField(
15+
model_name='snapshot',
16+
name='permission',
17+
field=models.IntegerField(choices=[(0, 'PUBLIC'), (10, 'NOT_LISTED')], default=gsmap.models.SnapshotPermission['NOT_LISTED']),
18+
),
19+
]

0 commit comments

Comments
 (0)