* fix: Allow more email addresses in notification lists Fixes #4736 * Do what @rjsparks suggested * Number migration * Number migration * Fix tests and apply for all doc types
24 lines
573 B
Python
24 lines
573 B
Python
# Generated by Django 2.2.28 on 2022-12-05 17:53
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('doc', '0047_tzaware_deletedevents'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='dochistory',
|
|
name='notify',
|
|
field=models.TextField(blank=True, max_length=1023),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='document',
|
|
name='notify',
|
|
field=models.TextField(blank=True, max_length=1023),
|
|
),
|
|
]
|