blob: e5c80a494c953ce4c51ed2112bf35f6719bee4b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# -*- coding: utf-8 -*-
# Generated by Django 1.9 on 2017-08-21 14:18
from __future__ import unicode_literals
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('birds', '0007_auto_20170821_1415'),
]
operations = [
migrations.RenameField(
model_name='birdsighting',
old_name='image',
new_name='images',
),
]
|