Migration for tests app

This commit is contained in:
Karl Hobley 2015-06-19 10:52:32 +01:00
parent d04798daac
commit a997a13058

View 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),
),
]