20 lines
738 B
Python
20 lines
738 B
Python
|
# Generated by Django 3.0.7 on 2021-05-10 06:54
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import manuels.models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('manuels', '0037_auto_20190627_1905'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='book',
|
||
|
name='isbn',
|
||
|
field=models.CharField(help_text="Format attendu : 10 ou 13 chiffres, éventuellement séparés par des tirets et éventuellement suivis de la lettre <code>X</code>. La recherche sur Decitre ne fonctionnera qu'avec un code ISBN à 13 chiffres (ou EAN)", max_length=20, validators=[manuels.models.isbn_validator], verbose_name='ISBN/EAN du manuel élève (hors specimen)'),
|
||
|
),
|
||
|
]
|