-
Notifications
You must be signed in to change notification settings - Fork 378
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: finish straightening out migrations
- Loading branch information
Showing
2 changed files
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Generated by Django 2.2.28 on 2023-02-10 19:58 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('person', '0029_use_timezone_now_for_person_models'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='email', | ||
name='origin', | ||
field=models.CharField(help_text="The origin of the address: the user's email address, or 'author: DRAFTNAME' if an Internet-Draft, or 'role: GROUP/ROLE' if a role.", max_length=150), | ||
), | ||
migrations.AlterField( | ||
model_name='historicalemail', | ||
name='origin', | ||
field=models.CharField(help_text="The origin of the address: the user's email address, or 'author: DRAFTNAME' if an Internet-Draft, or 'role: GROUP/ROLE' if a role.", max_length=150), | ||
), | ||
migrations.AlterField( | ||
model_name='historicalperson', | ||
name='name_from_draft', | ||
field=models.CharField(editable=False, help_text='Name as found in an Internet-Draft submission.', max_length=255, null=True, verbose_name='Full Name (from submission)'), | ||
), | ||
migrations.AlterField( | ||
model_name='person', | ||
name='name_from_draft', | ||
field=models.CharField(editable=False, help_text='Name as found in an Internet-Draft submission.', max_length=255, null=True, verbose_name='Full Name (from submission)'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Generated by Django 2.2.28 on 2023-02-10 19:58 | ||
|
||
from django.db import migrations, models | ||
import ietf.utils.validators | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('review', '0030_use_date_today_helper'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='historicalreviewersettings', | ||
name='filter_re', | ||
field=models.CharField(blank=True, help_text='Internet-Draft names matching this regular expression should not be assigned', max_length=255, validators=[ietf.utils.validators.RegexStringValidator()], verbose_name='Filter regexp'), | ||
), | ||
migrations.AlterField( | ||
model_name='reviewersettings', | ||
name='filter_re', | ||
field=models.CharField(blank=True, help_text='Internet-Draft names matching this regular expression should not be assigned', max_length=255, validators=[ietf.utils.validators.RegexStringValidator()], verbose_name='Filter regexp'), | ||
), | ||
] |