mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-05-20 04:51:55 +00:00
Added missing migration for tests
This commit is contained in:
parent
325a61ad05
commit
38174458e5
1 changed files with 26 additions and 0 deletions
26
wagtail/tests/migrations/0007_auto_20141118_0925.py
Normal file
26
wagtail/tests/migrations/0007_auto_20141118_0925.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', '0006_merge'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='pagechoosermodel',
|
||||
name='page',
|
||||
field=models.ForeignKey(to='wagtailcore.Page', help_text='help text'),
|
||||
preserve_default=True,
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='snippetchoosermodel',
|
||||
name='advert',
|
||||
field=models.ForeignKey(to='tests.Advert', help_text='help text'),
|
||||
preserve_default=True,
|
||||
),
|
||||
]
|
||||
Loading…
Reference in a new issue