2016-09-05 13:59:14 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
from django.db import migrations, models
|
2016-09-05 13:59:14 +02:00
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
dependencies = [("kfet", "0045_auto_20160905_0705")]
|
2016-09-05 13:59:14 +02:00
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AddField(
|
2018-10-06 12:35:49 +02:00
|
|
|
model_name="account",
|
|
|
|
name="created_at",
|
2016-09-05 13:59:14 +02:00
|
|
|
field=models.DateTimeField(auto_now_add=True, null=True),
|
2018-10-06 12:35:49 +02:00
|
|
|
)
|
2016-09-05 13:59:14 +02:00
|
|
|
]
|