Skip to content

Commit 9d81ddc

Browse files
committed
Added a migration to match the Person model changes in [11180].
- Legacy-Id: 11210 Note: SVN reference [11180] has been migrated to Git commit 7e61ce8
1 parent d1c05f6 commit 9d81ddc

1 file changed

Lines changed: 74 additions & 0 deletions

File tree

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
# -*- coding: utf-8 -*-
2+
from __future__ import unicode_literals
3+
4+
from django.db import models, migrations
5+
6+
7+
class Migration(migrations.Migration):
8+
9+
dependencies = [
10+
('person', '0006_auto_20160503_0937'),
11+
]
12+
13+
operations = [
14+
migrations.AlterField(
15+
model_name='person',
16+
name='address',
17+
field=models.TextField(help_text=b'Postal mailing address.', max_length=255, blank=True),
18+
preserve_default=True,
19+
),
20+
migrations.AlterField(
21+
model_name='person',
22+
name='affiliation',
23+
field=models.CharField(help_text=b'Employer, university, sponsor, etc.', max_length=255, blank=True),
24+
preserve_default=True,
25+
),
26+
migrations.AlterField(
27+
model_name='person',
28+
name='ascii',
29+
field=models.CharField(help_text=b'Name as rendered in ASCII (Latin, unaccented) characters.', max_length=255, verbose_name=b'Full Name (ASCII)'),
30+
preserve_default=True,
31+
),
32+
migrations.AlterField(
33+
model_name='person',
34+
name='ascii_short',
35+
field=models.CharField(help_text=b'Example: A. Nonymous. Fill in this with initials and surname only if taking the initials and surname of the ASCII name above produces an incorrect initials-only form. (Blank is OK).', max_length=32, null=True, verbose_name=b'Abbreviated Name (ASCII)', blank=True),
36+
preserve_default=True,
37+
),
38+
migrations.AlterField(
39+
model_name='person',
40+
name='name',
41+
field=models.CharField(help_text=b'Preferred form of name.', max_length=255, verbose_name=b'Full Name (Unicode)', db_index=True),
42+
preserve_default=True,
43+
),
44+
migrations.AlterField(
45+
model_name='personhistory',
46+
name='address',
47+
field=models.TextField(help_text=b'Postal mailing address.', max_length=255, blank=True),
48+
preserve_default=True,
49+
),
50+
migrations.AlterField(
51+
model_name='personhistory',
52+
name='affiliation',
53+
field=models.CharField(help_text=b'Employer, university, sponsor, etc.', max_length=255, blank=True),
54+
preserve_default=True,
55+
),
56+
migrations.AlterField(
57+
model_name='personhistory',
58+
name='ascii',
59+
field=models.CharField(help_text=b'Name as rendered in ASCII (Latin, unaccented) characters.', max_length=255, verbose_name=b'Full Name (ASCII)'),
60+
preserve_default=True,
61+
),
62+
migrations.AlterField(
63+
model_name='personhistory',
64+
name='ascii_short',
65+
field=models.CharField(help_text=b'Example: A. Nonymous. Fill in this with initials and surname only if taking the initials and surname of the ASCII name above produces an incorrect initials-only form. (Blank is OK).', max_length=32, null=True, verbose_name=b'Abbreviated Name (ASCII)', blank=True),
66+
preserve_default=True,
67+
),
68+
migrations.AlterField(
69+
model_name='personhistory',
70+
name='name',
71+
field=models.CharField(help_text=b'Preferred form of name.', max_length=255, verbose_name=b'Full Name (Unicode)', db_index=True),
72+
preserve_default=True,
73+
),
74+
]

0 commit comments

Comments
 (0)