2016-08-28 05:39:34 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
from django.db import migrations, models
|
2016-08-28 05:39:34 +02:00
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
2018-10-06 12:35:49 +02:00
|
|
|
dependencies = [("kfet", "0038_auto_20160828_0402")]
|
2016-08-28 05:39:34 +02:00
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterField(
|
2018-10-06 12:35:49 +02:00
|
|
|
model_name="order",
|
|
|
|
name="amount",
|
2016-08-28 05:39:34 +02:00
|
|
|
field=models.DecimalField(default=0, decimal_places=2, max_digits=6),
|
|
|
|
),
|
|
|
|
migrations.AlterField(
|
2018-10-06 12:35:49 +02:00
|
|
|
model_name="orderarticle",
|
|
|
|
name="quantity_received",
|
2016-08-28 05:39:34 +02:00
|
|
|
field=models.IntegerField(default=0),
|
|
|
|
),
|
|
|
|
]
|