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
26 lines
681 B
Python
26 lines
681 B
Python
# Generated by Django 2.2.6 on 2019-11-11 10:20
|
|
|
|
import django.utils.timezone
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('rental', '0018_auto_20191111_0912'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='reservation',
|
|
name='end',
|
|
field=models.DateField(default=django.utils.timezone.now),
|
|
preserve_default=False,
|
|
),
|
|
migrations.AddField(
|
|
model_name='reservation',
|
|
name='start',
|
|
field=models.DateField(default=django.utils.timezone.now),
|
|
preserve_default=False,
|
|
),
|
|
]
|