forked from DGNum/gestioCOF
32 lines
977 B
Python
32 lines
977 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import models, migrations
|
||
|
import datetime
|
||
|
from django.utils.timezone import utc
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('kfet', '0039_auto_20160828_0430'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterModelOptions(
|
||
|
name='order',
|
||
|
options={'ordering': ['-at']},
|
||
|
),
|
||
|
migrations.AddField(
|
||
|
model_name='supplierarticle',
|
||
|
name='at',
|
||
|
field=models.DateTimeField(auto_now_add=True, default=datetime.datetime(2016, 8, 29, 18, 35, 3, 419033, tzinfo=utc)),
|
||
|
preserve_default=False,
|
||
|
),
|
||
|
migrations.AlterField(
|
||
|
model_name='article',
|
||
|
name='box_type',
|
||
|
field=models.CharField(choices=[('caisse', 'caisse'), ('carton', 'carton'), ('palette', 'palette'), ('fût', 'fût')], null=True, max_length=7, blank=True, default=None),
|
||
|
),
|
||
|
]
|