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):
|
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
dependencies = [("kfet", "0051_verbose_names")]
|
2017-03-10 18:28:48 +01:00
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AddField(
|
2018-10-06 12:35:49 +02:00
|
|
|
model_name="articlecategory",
|
|
|
|
name="has_addcost",
|
|
|
|
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",
|
|
|
|
),
|
2017-04-05 15:34:28 +02:00
|
|
|
),
|
|
|
|
migrations.AlterField(
|
2018-10-06 12:35:49 +02:00
|
|
|
model_name="articlecategory",
|
|
|
|
name="name",
|
|
|
|
field=models.CharField(max_length=45, verbose_name="nom"),
|
2017-03-10 18:28:48 +01:00
|
|
|
),
|
|
|
|
]
|