2016-08-26 18:56:16 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
import datetime
|
|
|
|
from django.utils.timezone import utc
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
2018-10-04 19:29:19 +00:00
|
|
|
dependencies = [("counter", "0002_auto_20160826_1342")]
|
2016-08-26 18:56:16 +00:00
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AddField(
|
2018-10-04 19:29:19 +00:00
|
|
|
model_name="permanency",
|
|
|
|
name="activity",
|
|
|
|
field=models.DateTimeField(
|
|
|
|
verbose_name="activity time",
|
|
|
|
auto_now=True,
|
|
|
|
default=datetime.datetime(2016, 8, 26, 17, 5, 31, 202824, tzinfo=utc),
|
|
|
|
),
|
2016-08-26 18:56:16 +00:00
|
|
|
preserve_default=False,
|
2018-10-04 19:29:19 +00:00
|
|
|
)
|
2016-08-26 18:56:16 +00:00
|
|
|
]
|