forked from DGNum/gestioCOF
19 lines
413 B
Python
19 lines
413 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('kfet', '0047_auto_20170104_1528'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='articlecategory',
|
|
name='has_addcost',
|
|
field=models.BooleanField(default=True),
|
|
),
|
|
]
|