2017-03-10 18:28:48 +01:00
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django . db import migrations , models
class Migration ( migrations . Migration ) :
dependencies = [
2017-04-05 14:57:26 +02:00
( ' kfet ' , ' 0051_verbose_names ' ) ,
2017-03-10 18:28:48 +01:00
]
operations = [
migrations . AddField (
model_name = ' articlecategory ' ,
name = ' has_addcost ' ,
2017-04-05 15:34:28 +02:00
field = models . BooleanField ( default = True , help_text = " Si oui et qu ' une majoration est active, celle-ci sera appliquée aux articles de cette catégorie. " , verbose_name = ' majorée ' ) ,
) ,
migrations . AlterField (
model_name = ' articlecategory ' ,
name = ' name ' ,
field = models . CharField ( max_length = 45 , verbose_name = ' nom ' ) ,
2017-03-10 18:28:48 +01:00
) ,
]