2016-08-23 02:45:49 +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-23 02:45:49 +02:00
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
dependencies = [("kfet", "0032_auto_20160822_2350")]
|
2016-08-23 02:45:49 +02:00
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AddField(
|
2018-10-06 12:35:49 +02:00
|
|
|
model_name="checkoutstatement",
|
|
|
|
name="not_count",
|
2016-08-23 02:45:49 +02:00
|
|
|
field=models.BooleanField(default=False),
|
2018-10-06 12:35:49 +02:00
|
|
|
)
|
2016-08-23 02:45:49 +02:00
|
|
|
]
|