Skip to content

Commit a4db73e

Browse files
committed
Add migration to alter template ID field to BigAutoField (jazzband#157)
1 parent 10e7de2 commit a4db73e

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 4.2.23
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('dbtemplates', '0002_alter_template_creation_date_and_more'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='template',
15+
name='id',
16+
field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
17+
),
18+
]

0 commit comments

Comments
 (0)