mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-04-09 17:40:59 +00:00
Merge pull request #679 from takeflight/bug/missing-migration
Add missing migrations
This commit is contained in:
commit
a973bfd2d9
2 changed files with 39 additions and 0 deletions
20
wagtail/tests/migrations/0004_auto_20141008_0420.py
Normal file
20
wagtail/tests/migrations/0004_auto_20141008_0420.py
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import models, migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('tests', '0003_auto_20140905_0634'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.DeleteModel(
|
||||
name='SearchTestOldConfig',
|
||||
),
|
||||
migrations.DeleteModel(
|
||||
name='SearchTestOldConfigList',
|
||||
),
|
||||
]
|
||||
19
wagtail/wagtailcore/migrations/0006_auto_20141008_0420.py
Normal file
19
wagtail/wagtailcore/migrations/0006_auto_20141008_0420.py
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import models, migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('wagtailcore', '0005_add_page_lock_permission_to_moderators'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
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')]),
|
||||
),
|
||||
]
|
||||
Loading…
Reference in a new issue