21 lines
481 B
Python
21 lines
481 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
import datetime
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("kfet", "0019_auto_20160808_0343")]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="accountnegative",
|
|
name="start",
|
|
field=models.DateTimeField(
|
|
default=datetime.datetime.now, blank=True, null=True
|
|
),
|
|
)
|
|
]
|