forked from DGNum/gestioCOF
21 lines
443 B
Python
21 lines
443 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import models, migrations
|
||
|
import datetime
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('kfet', '0002_auto_20160802_2139'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='accountnegative',
|
||
|
name='start',
|
||
|
field=models.DateTimeField(default=datetime.datetime.now),
|
||
|
),
|
||
|
]
|