Skip to content

Commit 303bd0c

Browse files
authored
Add missing migration for creation_date and last_changed changes (#151)
1 parent 64d112c commit 303bd0c

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Generated by Django 5.1 on 2025-05-26 19:59
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('dbtemplates', '0001_initial'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='template',
15+
name='creation_date',
16+
field=models.DateTimeField(auto_now_add=True, verbose_name='creation date'),
17+
),
18+
migrations.AlterField(
19+
model_name='template',
20+
name='last_changed',
21+
field=models.DateTimeField(auto_now=True, verbose_name='last changed'),
22+
),
23+
]

0 commit comments

Comments
 (0)