Skip to content

Commit

Permalink
Replaced BigAutoField with AutoField in 0002_alter_id_fields.py
Browse files Browse the repository at this point in the history
  • Loading branch information
pooja-narwade authored Dec 17, 2022
1 parent 7175419 commit 3d92474
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/robots/migrations/0002_alter_id_fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ class Migration(migrations.Migration):
migrations.AlterField(
model_name="rule",
name="id",
field=models.BigAutoField(
field=models.AutoField(
auto_created=True, primary_key=True, serialize=False, verbose_name="ID"
),
),
migrations.AlterField(
model_name="url",
name="id",
field=models.BigAutoField(
field=models.AutoField(
auto_created=True, primary_key=True, serialize=False, verbose_name="ID"
),
),
Expand Down

0 comments on commit 3d92474

Please sign in to comment.