22 lines
534 B
Python
22 lines
534 B
Python
# Generated by Django 2.0.5 on 2018-06-07 05:46
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("manuels", "0024_book_other_editor"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="book",
|
|
name="comments",
|
|
field=models.TextField(
|
|
blank=True,
|
|
help_text="Ce message sera visible par la documentaliste.",
|
|
verbose_name="commentaires",
|
|
),
|
|
),
|
|
]
|