25 lines
698 B
Python
25 lines
698 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.9 on 2018-01-28 16:17
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('cofcms', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='cofdirectoryentrypage',
|
|
name='sort_order',
|
|
field=models.IntegerField(blank=True, editable=False, null=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name='cofdirectorypage',
|
|
name='alphabetique',
|
|
field=models.BooleanField(default=True, verbose_name='Tri par ordre alphabétique ?'),
|
|
),
|
|
]
|