Skip to content

Commit

Permalink
Don't put a default into the migration
Browse files Browse the repository at this point in the history
 We don't want a default anyways.
  • Loading branch information
rtpg committed Jul 27, 2024
1 parent 27640ce commit 83f70e4
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions taggit/migrations/0007_taggeditem_created_at.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name="taggeditem",
name="created_at",
field=models.DateTimeField(
blank=True, default=django.utils.timezone.now, null=True
),
field=models.DateTimeField(blank=True, null=True),
),
]

0 comments on commit 83f70e4

Please sign in to comment.