26 lines
777 B
Python
26 lines
777 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.5 on 2017-09-22 12:38
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('mainsite', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='PublicationYear',
|
|
fields=[
|
|
('startYear', models.IntegerField(help_text='Année scolaire à partir du 1/08', primary_key=True, serialize=False, verbose_name='Année de début')),
|
|
('descr', models.TextField(verbose_name="Accroche de l'année")),
|
|
],
|
|
),
|
|
migrations.AlterModelOptions(
|
|
name='publication',
|
|
options={'ordering': ['date']},
|
|
),
|
|
]
|