Use AutoField instead of BigAutoField

This commit is contained in:
Tom Hubrecht 2022-06-30 11:04:12 +02:00 committed by thubrecht
parent 01dd16c795
commit 177d413f4c
9 changed files with 476 additions and 1 deletions

View file

@ -0,0 +1,20 @@
# Generated by Django 3.2.13 on 2022-06-30 09:03
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("bds", "0007_alter_bdsprofile_id"),
]
operations = [
migrations.AlterField(
model_name="bdsprofile",
name="id",
field=models.AutoField(
auto_created=True, primary_key=True, serialize=False, verbose_name="ID"
),
),
]