26 lines
746 B
Python
26 lines
746 B
Python
|
# Generated by Django 2.2.25 on 2022-03-14 23:20
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import django.utils.timezone
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('calendrier', '0006_auto_20210929_1629'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='participants',
|
||
|
name='creationDate',
|
||
|
field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now, verbose_name='Date de création'),
|
||
|
preserve_default=False,
|
||
|
),
|
||
|
migrations.AddField(
|
||
|
model_name='participants',
|
||
|
name='updateDate',
|
||
|
field=models.DateTimeField(auto_now=True, verbose_name='Dernière mise à jour'),
|
||
|
),
|
||
|
]
|