From 27640cebf6d7f03f5b34d0395bbf85422a6ef51f Mon Sep 17 00:00:00 2001 From: Raphael Gaschignard Date: Sat, 27 Jul 2024 10:28:51 +1000 Subject: [PATCH] Add the migration itself --- .../migrations/0007_taggeditem_created_at.py | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 taggit/migrations/0007_taggeditem_created_at.py diff --git a/taggit/migrations/0007_taggeditem_created_at.py b/taggit/migrations/0007_taggeditem_created_at.py new file mode 100644 index 00000000..e14831a0 --- /dev/null +++ b/taggit/migrations/0007_taggeditem_created_at.py @@ -0,0 +1,24 @@ +# Generated by Django 5.0.6 on 2024-07-27 00:23 + +import django.utils.timezone +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ( + "taggit", + "0006_rename_taggeditem_content_type_object_id_taggit_tagg_content_8fc721_idx", + ), + ] + + operations = [ + migrations.AddField( + model_name="taggeditem", + name="created_at", + field=models.DateTimeField( + blank=True, default=django.utils.timezone.now, null=True + ), + ), + ]