mirror of
https://github.com/jazzband/django-dbtemplates.git
synced 2026-05-04 21:54:52 +00:00
Add migration to alter template ID field to BigAutoField
This commit is contained in:
parent
808e6b527a
commit
1b3a0f6ac0
1 changed files with 20 additions and 0 deletions
20
dbtemplates/migrations/0003_alter_template_id.py
Normal file
20
dbtemplates/migrations/0003_alter_template_id.py
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
# Generated by Django 4.2.23 on 2025-07-28 13:34
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("dbtemplates", "0002_alter_template_creation_date_and_more"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name="template",
|
||||
name="id",
|
||||
field=models.BigAutoField(
|
||||
auto_created=True, primary_key=True, serialize=False, verbose_name="ID"
|
||||
),
|
||||
),
|
||||
]
|
||||
Loading…
Reference in a new issue