22 lines
524 B
Python
22 lines
524 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
from django.db import models, migrations
|
||
|
import datetime
|
||
|
from django.utils.timezone import utc
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('facts', '0003_auto_20150620_1018'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='fact',
|
||
|
name='time',
|
||
|
field=models.DateTimeField(default=datetime.datetime(2015, 6, 20, 15, 22, 20, 481856, tzinfo=utc), auto_now_add=True),
|
||
|
preserve_default=False,
|
||
|
),
|
||
|
]
|