Skip to content

Commit

Permalink
Add the migration itself
Browse files Browse the repository at this point in the history
  • Loading branch information
rtpg committed Jul 27, 2024
1 parent ade65b2 commit 27640ce
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions taggit/migrations/0007_taggeditem_created_at.py
Original file line number Diff line number Diff line change
@@ -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
),
),
]

0 comments on commit 27640ce

Please sign in to comment.