🗃️(mailboxes) migrate local part field modification
"+" character was removed from valid character for mailbox creation this commit adds migration file for database to be up-to-date
This commit is contained in:
committed by
Marie
parent
8c54e701c1
commit
f5c7abcd20
@@ -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'),
|
||||||
|
),
|
||||||
|
]
|
||||||
Reference in New Issue
Block a user