20 lines
487 B
Python
20 lines
487 B
Python
|
# Generated by Django 3.2.8 on 2021-11-04 04:52
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import django.db.models.deletion
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('api', '0003_plant_zones'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='habitatimage',
|
||
|
name='habitat',
|
||
|
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='images', to='api.habitat'),
|
||
|
),
|
||
|
]
|