mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-05-12 17:23:15 +00:00
Add missing migration for wagtail.tests
It only appears in Python 3.x for some reason.
This commit is contained in:
parent
1b7e6fac31
commit
860f8224bf
1 changed files with 26 additions and 0 deletions
26
wagtail/tests/migrations/0008_auto_20141113_2125.py
Normal file
26
wagtail/tests/migrations/0008_auto_20141113_2125.py
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import models, migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('tests', '0007_registerdecorator'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='pagechoosermodel',
|
||||
name='page',
|
||||
field=models.ForeignKey(help_text='help text', to='wagtailcore.Page'),
|
||||
preserve_default=True,
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='snippetchoosermodel',
|
||||
name='advert',
|
||||
field=models.ForeignKey(help_text='help text', to='tests.Advert'),
|
||||
preserve_default=True,
|
||||
),
|
||||
]
|
||||
Loading…
Reference in a new issue