2017-01-26 19:22:38 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
2017-03-17 19:23:44 +01:00
|
|
|
('kfet', '0048_articlecategory_has_addcost'),
|
2017-01-26 19:22:38 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AddField(
|
|
|
|
model_name='article',
|
|
|
|
name='hidden',
|
|
|
|
field=models.BooleanField(help_text='Si oui, ne sera pas affiché au public ; par exemple sur la carte.', default=False),
|
|
|
|
),
|
|
|
|
]
|