Add comment field

This commit is contained in:
Ludovic Stephan 2020-08-28 16:00:20 +02:00 committed by Martin Pépin
parent 74c3afe9ca
commit f811230c25
No known key found for this signature in database
GPG key ID: E7520278B1774448
3 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,23 @@
# Generated by Django 2.2.12 on 2020-08-28 12:14
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("bds", "0005_remove_bdsprofile_certificate_file"),
]
operations = [
migrations.AddField(
model_name="bdsprofile",
name="comments",
field=models.TextField(
blank=True,
help_text="Attention : l'utilisateur·ice dispose d'un droit d'accès"
" aux données le/la concernant, dont le contenu de ce champ !",
verbose_name="commentaires",
),
),
]