Skip to content

Commit

Permalink
Notifications: Add forgotten migration
Browse files Browse the repository at this point in the history
Signed-off-by: Michal Čihař <michal@cihar.com>
  • Loading branch information
nijel committed Nov 15, 2019
1 parent eb08c37 commit 3446fd0
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions weblate/accounts/migrations/0016_auto_20191115_2020.py
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,
),
)
]

0 comments on commit 3446fd0

Please sign in to comment.