From fe47a747ea3284ed1727ad8b7c7a0a23cac44204 Mon Sep 17 00:00:00 2001 From: Laurent Morvillier Date: Thu, 27 Feb 2025 16:47:44 +0100 Subject: [PATCH] add migration --- .../0008_alter_assnotification_signeddate.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 subscriptions/migrations/0008_alter_assnotification_signeddate.py diff --git a/subscriptions/migrations/0008_alter_assnotification_signeddate.py b/subscriptions/migrations/0008_alter_assnotification_signeddate.py new file mode 100644 index 0000000..ad25473 --- /dev/null +++ b/subscriptions/migrations/0008_alter_assnotification_signeddate.py @@ -0,0 +1,18 @@ +# Generated by Django 5.1.6 on 2025-02-27 15:47 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('subscriptions', '0007_assnotification_offer_discount_type_and_more'), + ] + + operations = [ + migrations.AlterField( + model_name='assnotification', + name='signedDate', + field=models.DateTimeField(blank=True, null=True), + ), + ]