From 5bc66c8e3c9d6de9d57705ee5d2e4797e84757cb Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Sun, 25 Mar 2018 17:14:53 +0100 Subject: [PATCH] migrations: Add missing migration Add a migration that was missed in an earlier change. Signed-off-by: Stephen Finucane Fixes: 0f25d8a15 ("Add validation for regular expressions") --- .../migrations/0025_add_regex_validators.py | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 patchwork/migrations/0025_add_regex_validators.py diff --git a/patchwork/migrations/0025_add_regex_validators.py b/patchwork/migrations/0025_add_regex_validators.py new file mode 100644 index 00000000..adbc66d1 --- /dev/null +++ b/patchwork/migrations/0025_add_regex_validators.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models +import patchwork.models + + +class Migration(migrations.Migration): + + dependencies = [ + ('patchwork', '0024_patch_patch_project'), + ] + + operations = [ + migrations.AlterField( + model_name='project', + name='subject_match', + field=models.CharField(blank=True, default=b'', help_text=b'Regex to match the subject against if only part of emails sent to the list belongs to this project. Will be used with IGNORECASE and MULTILINE flags. If rules for more projects match the first one returned from DB is chosen; empty field serves as a default for every email which has no other match.', max_length=64, validators=[patchwork.models.validate_regex_compiles]), + ), + migrations.AlterField( + model_name='tag', + name='pattern', + field=models.CharField(help_text=b'A simple regex to match the tag in the content of a message. Will be used with MULTILINE and IGNORECASE flags. eg. ^Acked-by:', max_length=50, validators=[patchwork.models.validate_regex_compiles]), + ), + ] -- 2.47.3