mirror of
https://github.com/wagtail/wagtail.git
synced 2024-12-01 11:41:20 +01:00
Add merge migrations to wagtailcore and wagtaildocs
We are not renumbering the collection migrations here, as some sites already exist in the wild running a custom build of Wagtail 1.3 with collections, and we want those to continue working.
This commit is contained in:
parent
ee2ef1da03
commit
3042c10ec2
16
wagtail/wagtailcore/migrations/0028_merge.py
Normal file
16
wagtail/wagtailcore/migrations/0028_merge.py
Normal file
@ -0,0 +1,16 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.9.1 on 2016-02-03 13:50
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('wagtailcore', '0024_alter_page_content_type_on_delete_behaviour'),
|
||||
('wagtailcore', '0027_fix_collection_path_collation'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
]
|
16
wagtail/wagtaildocs/migrations/0007_merge.py
Normal file
16
wagtail/wagtaildocs/migrations/0007_merge.py
Normal file
@ -0,0 +1,16 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.9.1 on 2016-01-28 14:46
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('wagtaildocs', '0005_alter_uploaded_by_user_on_delete_action'),
|
||||
('wagtaildocs', '0006_copy_document_permissions_to_collections'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
]
|
Loading…
Reference in New Issue
Block a user