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
19 lines
510 B
Python
19 lines
510 B
Python
# Generated by Django 2.2.6 on 2019-11-07 21:16
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('rental', '0006_auto_20191107_2114'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='testimonial',
|
|
name='reservation',
|
|
field=models.OneToOneField(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='rental.Reservation'),
|
|
),
|
|
]
|