mirror of
https://github.com/jazzband/django-dbtemplates.git
synced 2026-03-16 22:20:28 +00:00
Add migration to alter template ID field to BigAutoField (#157)
This commit is contained in:
parent
10e7de2eda
commit
a4db73e4cd
1 changed files with 18 additions and 0 deletions
18
dbtemplates/migrations/0003_alter_template_id.py
Normal file
18
dbtemplates/migrations/0003_alter_template_id.py
Normal 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'),
|
||||
),
|
||||
]
|
||||
Loading…
Reference in a new issue