-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Possibilité d’enrichir les champs contenu au niveau des synonymes (#1161
- Loading branch information
1 parent
414d017
commit a6870fa
Showing
3 changed files
with
68 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
qfdmd/migrations/0022_synonyme_comment_les_eviter_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Generated by Django 5.1.1 on 2024-12-19 11:54 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
( | ||
"qfdmd", | ||
"0015_remove_produit_picto_synonyme_picto_squashed_0021_alter_synonyme_picto", | ||
), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="synonyme", | ||
name="comment_les_eviter", | ||
field=models.TextField( | ||
blank=True, help_text="Comment consommer responsable ?" | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="synonyme", | ||
name="qu_est_ce_que_j_en_fais_bon_etat", | ||
field=models.TextField( | ||
blank=True, help_text="Qu'est-ce que j'en fais ? - Bon état" | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="synonyme", | ||
name="qu_est_ce_que_j_en_fais_mauvais_etat", | ||
field=models.TextField( | ||
blank=True, help_text="Qu'est-ce que j'en fais ? - Mauvais état" | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="synonyme", | ||
name="que_va_t_il_devenir", | ||
field=models.TextField(blank=True, help_text="Que va-t-il devenir ?"), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters