Skip to content

Commit

Permalink
Add migration to timestamp field.
Browse files Browse the repository at this point in the history
  • Loading branch information
fsargent committed Jul 23, 2024
1 parent ffdc2e2 commit 3b22b21
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions approval_polls/migrations/0019_alter_ballot_timestamp.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 5.0.7 on 2024-07-23 18:32

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("approval_polls", "0018_auto_20230511_0246"),
]

operations = [
migrations.AlterField(
model_name="ballot",
name="timestamp",
field=models.DateTimeField(auto_now_add=True, verbose_name="time voted"),
),
]

0 comments on commit 3b22b21

Please sign in to comment.