2016-08-03 04:38:54 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from django.db import models, migrations
|
2017-02-23 18:33:44 +01:00
|
|
|
from django.utils import timezone
|
2016-08-03 04:38:54 +02:00
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
('kfet', '0002_auto_20160802_2139'),
|
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterField(
|
|
|
|
model_name='accountnegative',
|
|
|
|
name='start',
|
2017-02-23 18:33:44 +01:00
|
|
|
field=models.DateTimeField(default=timezone.now),
|
2016-08-03 04:38:54 +02:00
|
|
|
),
|
|
|
|
]
|