# -*- coding: utf-8 -*- # Generated by Django 1.9 on 2016-03-13 09:53 from __future__ import unicode_literals import birds.models from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('birds', '0001_initial'), ] operations = [ migrations.AddField( model_name='bird', name='image_credit', field=models.CharField(blank=True, max_length=200, null=True), ), migrations.AlterField( model_name='bird', name='image', field=models.FileField(blank=True, help_text='width of high res is 1360px', null=True, upload_to=birds.models.get_upload_path), ), ]