From 94c6bbffe2016edcf289408a6539f0c3b19b9639 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Thu, 16 Jun 2022 17:50:17 +0200 Subject: [PATCH] add migration --- .../migrations/0017_conference_date_publish.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 teleforma/migrations/0017_conference_date_publish.py diff --git a/teleforma/migrations/0017_conference_date_publish.py b/teleforma/migrations/0017_conference_date_publish.py new file mode 100644 index 00000000..e02fdbfa --- /dev/null +++ b/teleforma/migrations/0017_conference_date_publish.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.3 on 2022-06-16 17:49 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('teleforma', '0016_alter_profile_siret'), + ] + + operations = [ + migrations.AddField( + model_name='conference', + name='date_publish', + field=models.DateTimeField(blank=True, null=True, verbose_name='publishing date'), + ), + ] -- 2.39.5