blob: 7672a18a3c1700ed354fae1f4ea31885787cb4ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# -*- coding: utf-8 -*-
# Generated by Django 1.9 on 2016-03-21 11:23
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('birds', '0003_birdsighting_images'),
]
operations = [
migrations.RemoveField(
model_name='birdsighting',
name='image',
),
migrations.AddField(
model_name='birdsighting',
name='audio',
field=models.ManyToManyField(to='birds.BirdAudio'),
),
]
|