-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
65 additions
and
17 deletions.
There are no files selected for viewing
45 changes: 45 additions & 0 deletions
45
src/peoplefinder/migrations/0111_alter_person_contact_email_and_more.py
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,45 @@ | ||
# Generated by Django 4.1.10 on 2023-09-13 14:47 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("peoplefinder", "0110_person_contact_email"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="person", | ||
name="contact_email", | ||
field=models.EmailField( | ||
blank=True, | ||
help_text="The work email you want people to contact you on.", | ||
max_length=254, | ||
null=True, | ||
verbose_name="Email address", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="person", | ||
name="primary_phone_number", | ||
field=models.CharField( | ||
blank=True, | ||
help_text="Enter the country's dialling code in place of the first 0. The UK's dialling code is +44.", | ||
max_length=42, | ||
null=True, | ||
verbose_name="Phone number", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="person", | ||
name="secondary_phone_number", | ||
field=models.CharField( | ||
blank=True, | ||
help_text="Enter the country's dialling code in place of the first 0. The UK's dialling code is +44.", | ||
max_length=160, | ||
null=True, | ||
verbose_name="Alternative phone number", | ||
), | ||
), | ||
] |
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
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
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
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