2019-06-27 19:12:04 +02:00
|
|
|
# Generated by Django 2.2.2 on 2019-06-27 17:05
|
|
|
|
|
|
|
|
import django.contrib.postgres.fields.citext
|
|
|
|
from django.contrib.postgres.operations import CITextExtension
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
2021-07-10 12:11:58 +02:00
|
|
|
("manuels", "0036_auto_20190615_1114"),
|
2019-06-27 19:12:04 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterModelOptions(
|
2021-07-10 12:11:58 +02:00
|
|
|
name="commonsupply",
|
|
|
|
options={
|
|
|
|
"ordering": ("order", "name"),
|
|
|
|
"verbose_name": "fourniture commune",
|
|
|
|
"verbose_name_plural": "fournitures communes",
|
|
|
|
},
|
2019-06-27 19:12:04 +02:00
|
|
|
),
|
|
|
|
CITextExtension(),
|
|
|
|
migrations.AlterField(
|
2021-07-10 12:11:58 +02:00
|
|
|
model_name="teacher",
|
|
|
|
name="email",
|
|
|
|
field=django.contrib.postgres.fields.citext.CIEmailField(
|
|
|
|
help_text="Utilisée pour vous transmettre votre lien personnel",
|
|
|
|
max_length=254,
|
|
|
|
unique=True,
|
|
|
|
verbose_name="adresse email",
|
|
|
|
),
|
2019-06-27 19:12:04 +02:00
|
|
|
),
|
|
|
|
]
|