19 lines
563 B
Python
19 lines
563 B
Python
|
# Generated by Django 2.0.5 on 2018-05-31 06:15
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('manuels', '0018_book_comments'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='book',
|
||
|
name='comments',
|
||
|
field=models.TextField(blank=True, help_text="Ce message sera visible par la documentaliste. Vous pouvez l'utiliser par exemple si vous souhaitez saisir un éditeur qui n'est pas proposé.", verbose_name='commentaires'),
|
||
|
),
|
||
|
]
|