Skip to content

Commit

Permalink
Added missing migrations for new django's BigAutoField
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-allen committed Jul 17, 2023
1 parent 57e19b9 commit 3bd6c2c
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions django_celery_tracker/migrations/0003_alter_celerytask_id.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 4.1.1 on 2023-07-17 13:13

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("django_celery_tracker", "0002_celerytask_args"),
]

operations = [
migrations.AlterField(
model_name="celerytask",
name="id",
field=models.BigAutoField(
auto_created=True, primary_key=True, serialize=False, verbose_name="ID"
),
),
]

0 comments on commit 3bd6c2c

Please sign in to comment.