Skip to content

Commit bfccc6c

Browse files
committed
Tweaked a migration.
- Legacy-Id: 18149
1 parent 0dbb061 commit bfccc6c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

ietf/person/migrations/0013_auto_20200711_1036.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated by Django 2.2.14 on 2020-07-11 10:36
1+
# Generated by Django 2.2.14 on 2020-07-11 13:28
22

33
from django.db import migrations, models
44

@@ -13,12 +13,12 @@ class Migration(migrations.Migration):
1313
migrations.AddField(
1414
model_name='historicalperson',
1515
name='plain',
16-
field=models.CharField(default='', help_text='Preferred plain form of name, if different from the automatic plain form.', max_length=64, verbose_name='Plain Name (Unicode)'),
16+
field=models.CharField(blank=True, default='', help_text='Preferred plain form of name, if different from the automatic plain form.', max_length=64, verbose_name='Plain Name (Unicode)'),
1717
),
1818
migrations.AddField(
1919
model_name='person',
2020
name='plain',
21-
field=models.CharField(default='', help_text='Preferred plain form of name, if different from the automatic plain form.', max_length=64, verbose_name='Plain Name (Unicode)'),
21+
field=models.CharField(blank=True, default='', help_text='Preferred plain form of name, if different from the automatic plain form.', max_length=64, verbose_name='Plain Name (Unicode)'),
2222
),
2323
migrations.AlterField(
2424
model_name='historicalperson',

0 commit comments

Comments
 (0)