Add migration to alter template ID field to BigAutoField

This commit is contained in:
Edouard 2025-07-28 20:34:54 +02:00
parent 808e6b527a
commit 1b3a0f6ac0

View 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"
),
),
]