Skip to content

Commit

Permalink
🗃️(mailboxes) migrate local part field modification
Browse files Browse the repository at this point in the history
"+" character was removed from valid character for mailbox creation
this commit adds migration file for database to be up-to-date
  • Loading branch information
mjeammet committed Aug 30, 2024
1 parent 8c54e70 commit f5c7abc
Showing 1 changed file with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 5.1 on 2024-08-30 10:09

import django.core.validators
from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('mailbox_manager', '0011_maildomain_secret'),
]

operations = [
migrations.AlterField(
model_name='mailbox',
name='local_part',
field=models.CharField(max_length=150, validators=[django.core.validators.RegexValidator(regex='^[a-zA-Z0-9_.-]+$')], verbose_name='local_part'),
),
]

0 comments on commit f5c7abc

Please sign in to comment.