Add migration to alter template ID field to BigAutoField (#157)

This commit is contained in:
Edouard 2025-07-28 19:51:20 +02:00
parent 10e7de2eda
commit a4db73e4cd

View file

@ -0,0 +1,18 @@
# Generated by Django 4.2.23
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'),
),
]