-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
691a0a5
commit ca9442d
Showing
1 changed file
with
42 additions
and
0 deletions.
There are no files selected for viewing
42 changes: 42 additions & 0 deletions
42
...munaute/notification/migrations/0010_alter_emailsenttrack_kind_alter_notification_kind.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.0.9 on 2024-11-13 13:44 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("notification", "0009_alter_emailsenttrack_kind_notification"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="emailsenttrack", | ||
name="kind", | ||
field=models.CharField( | ||
choices=[ | ||
("first_reply", "Première réponse à un sujet"), | ||
("following_replies", "Réponses suivantes"), | ||
("onboarding", "Onboarding d'un nouvel utilisateur"), | ||
("pending_topic", "Question sans réponse"), | ||
("magic_link", "Lien de connexion magique"), | ||
], | ||
max_length=20, | ||
verbose_name="type", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="notification", | ||
name="kind", | ||
field=models.CharField( | ||
choices=[ | ||
("first_reply", "Première réponse à un sujet"), | ||
("following_replies", "Réponses suivantes"), | ||
("onboarding", "Onboarding d'un nouvel utilisateur"), | ||
("pending_topic", "Question sans réponse"), | ||
("magic_link", "Lien de connexion magique"), | ||
], | ||
max_length=20, | ||
verbose_name="type", | ||
), | ||
), | ||
] |