2015-06-20 10:22:49 -05:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
from django.db import models, migrations
|
|
|
|
import datetime
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
('facts', '0003_auto_20150620_1018'),
|
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AddField(
|
|
|
|
model_name='fact',
|
|
|
|
name='time',
|
2024-05-03 12:40:01 -05:00
|
|
|
field=models.DateTimeField(default=datetime.datetime(2015, 6, 20, 15, 22, 20, 481856, tzinfo=datetime.timezone.utc), auto_now_add=True),
|
2015-06-20 10:22:49 -05:00
|
|
|
preserve_default=False,
|
|
|
|
),
|
|
|
|
]
|