mirror of
https://github.com/rjNemo/villafleurie
synced 2026-06-06 02:16:47 +00:00
* crete setting module to split prod and dev configs * fix calendar midmatch * lint imports using isort * doc: add doctrings
23 lines
589 B
Python
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'),
|
|
),
|
|
]
|