17 lines
405 B
Python
17 lines
405 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("kfet", "0045_auto_20160905_0705")]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="account",
|
|
name="created_at",
|
|
field=models.DateTimeField(auto_now_add=True, null=True),
|
|
)
|
|
]
|