Use AutoField instead of BigAutoField
This commit is contained in:
parent
01dd16c795
commit
177d413f4c
9 changed files with 476 additions and 1 deletions
20
bds/migrations/0008_alter_bdsprofile_id.py
Normal file
20
bds/migrations/0008_alter_bdsprofile_id.py
Normal 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"
|
||||
),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue