villafleurie/rental/migrations/0013_auto_20191110_1817.py
Ruidy 780188e7d6
Refactor (#7)
* crete setting module to split prod and dev configs

* fix calendar midmatch

* lint imports using isort

* doc: add doctrings
2020-07-31 08:02:10 +02:00

23 lines
589 B
Python

# Generated by Django 2.2.6 on 2019-11-10 18:17
import django.db.models.deletion
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('rental', '0012_auto_20191110_1814'),
]
operations = [
migrations.RemoveField(
model_name='place',
name='images',
),
migrations.AddField(
model_name='image',
name='place',
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='rental.Place'),
),
]