mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-04-10 18:10:58 +00:00
Merge pull request #682 from kaedroho/missing-migration
Added missing migration
This commit is contained in:
commit
c19fef8669
1 changed files with 1 additions and 1 deletions
|
|
@ -14,6 +14,6 @@ class Migration(migrations.Migration):
|
|||
migrations.AlterField(
|
||||
model_name='grouppagepermission',
|
||||
name='permission_type',
|
||||
field=models.CharField(max_length=20, choices=[(b'add', b'Add/edit pages you own'), (b'edit', b'Add/edit any page'), (b'publish', b'Publish any page'), (b'lock', b'Lock/unlock any page')]),
|
||||
field=models.CharField(max_length=20, choices=[('add', 'Add/edit pages you own'), ('edit', 'Add/edit any page'), ('publish', 'Publish any page'), ('lock', 'Lock/unlock any page')]),
|
||||
),
|
||||
]
|
||||
Loading…
Reference in a new issue