-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Notifications: Add forgotten migration
Signed-off-by: Michal Čihař <michal@cihar.com>
- Loading branch information
Showing
1 changed file
with
36 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Generated by Django 2.2.5 on 2019-11-15 20:20 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [("accounts", "0015_auto_20190922_1948")] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="subscription", | ||
name="notification", | ||
field=models.CharField( | ||
choices=[ | ||
("MergeFailureNotification", "Repository failure"), | ||
("RepositoryNotification", "Repository operation"), | ||
("ParseErrorNotification", "Parse error"), | ||
("NewStringNotificaton", "New string"), | ||
("NewContributorNotificaton", "New contributor"), | ||
("NewSuggestionNotificaton", "New suggestion"), | ||
("LastAuthorCommentNotificaton", "Comment on own translation"), | ||
("MentionCommentNotificaton", "Mentioned in comment"), | ||
("NewCommentNotificaton", "New comment"), | ||
("ChangedStringNotificaton", "Changed string"), | ||
("NewTranslationNotificaton", "New language"), | ||
("NewComponentNotificaton", "New translation component"), | ||
("NewWhiteboardMessageNotificaton", "New whiteboard message"), | ||
("NewAlertNotificaton", "New alert"), | ||
("PendingSuggestionsNotification", "Pending suggestions"), | ||
("ToDoStringsNotification", "Strings needing action"), | ||
], | ||
max_length=100, | ||
), | ||
) | ||
] |