mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-05-15 02:33:13 +00:00
Migration for tests app
This commit is contained in:
parent
d04798daac
commit
a997a13058
1 changed files with 24 additions and 0 deletions
24
wagtail/tests/testapp/migrations/0005_image_file_size.py
Normal file
24
wagtail/tests/testapp/migrations/0005_image_file_size.py
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import models, migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('tests', '0004_streammodel_richtext'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='customimagewithadminformfields',
|
||||
name='file_size',
|
||||
field=models.PositiveIntegerField(null=True, editable=False),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='customimagewithoutadminformfields',
|
||||
name='file_size',
|
||||
field=models.PositiveIntegerField(null=True, editable=False),
|
||||
),
|
||||
]
|
||||
Loading…
Reference in a new issue