mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-04-15 12:31:00 +00:00
Added merge migration
This commit is contained in:
parent
f9df08a0c8
commit
7f72d038ff
1 changed files with 15 additions and 0 deletions
15
wagtail/tests/testapp/migrations/0008_merge.py
Normal file
15
wagtail/tests/testapp/migrations/0008_merge.py
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('tests', '0007_auto_20150819_0614'),
|
||||
('tests', '0007_singleeventpage'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
]
|
||||
Loading…
Reference in a new issue