2017-04-06 00:31:04 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
import django.utils.timezone
|
2018-10-06 12:35:49 +02:00
|
|
|
from django.db import migrations, models
|
2017-04-06 00:31:04 +02:00
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
dependencies = [("kfet", "0052_category_addcost")]
|
2017-04-06 00:31:04 +02:00
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterField(
|
2018-10-06 12:35:49 +02:00
|
|
|
model_name="account",
|
|
|
|
name="created_at",
|
2017-04-06 00:31:04 +02:00
|
|
|
field=models.DateTimeField(default=django.utils.timezone.now),
|
2018-10-06 12:35:49 +02:00
|
|
|
)
|
2017-04-06 00:31:04 +02:00
|
|
|
]
|