0
0
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:
Matt Westcott 2016-02-16 16:50:53 +00:00
parent ee2ef1da03
commit 3042c10ec2
2 changed files with 32 additions and 0 deletions

View 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 = [
]

View 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 = [
]