1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# -*- 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),
),
]
|