2017-10-17 16:29:42 +02:00
# -*- coding: utf-8 -*-
# Generated by Django 1.11.5 on 2017-10-17 14:08
from __future__ import unicode_literals
from django . db import migrations , models
class Migration ( migrations . Migration ) :
dependencies = [
2024-10-23 11:06:57 +02:00
( " mainsite " , " 0007_siteconfiguration_specialpublisdescr " ) ,
2017-10-17 16:29:42 +02:00
]
operations = [
migrations . AddField (
2024-10-23 11:06:57 +02:00
model_name = " publication " ,
name = " unknown_date " ,
field = models . BooleanField (
default = False ,
help_text = " La date de publication du BOcal est inconnue parce qu ' il est trop vieux. La date indiquée ne servira qu ' à le ranger dans une année et à ordonner les BOcals. " ,
verbose_name = " Date inconnue " ,
) ,
2017-10-17 16:29:42 +02:00
) ,
]