19 lines
421 B
Python
19 lines
421 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
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),
|
|
),
|
|
]
|