Skip to content

Commit caeb10a

Browse files
committed
migrations
1 parent eb91f6e commit caeb10a

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Generated by Django 2.1.5 on 2019-01-09 00:52
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('django_db_logger', '0001_initial'),
10+
]
11+
12+
operations = [
13+
migrations.AlterModelOptions(
14+
name='statuslog',
15+
options={'ordering': ('-create_datetime',), 'verbose_name': 'Logging', 'verbose_name_plural': 'Logging'},
16+
),
17+
migrations.AlterField(
18+
model_name='statuslog',
19+
name='create_datetime',
20+
field=models.DateTimeField(auto_now_add=True, verbose_name='Created at'),
21+
),
22+
]

0 commit comments

Comments
 (0)