25 lines
656 B
Python
25 lines
656 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.5 on 2017-09-23 16:54
|
|
from __future__ import unicode_literals
|
|
|
|
import markdownx.models
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("mainsite", "0006_auto_20170923_1847"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="siteconfiguration",
|
|
name="specialPublisDescr",
|
|
field=markdownx.models.MarkdownxField(
|
|
default="",
|
|
verbose_name="Texte de la page des publications spéciales (Markdown)",
|
|
),
|
|
preserve_default=False,
|
|
),
|
|
]
|