-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Describe your changes Fixes: # ## Checklist before requesting review - [ ] Feature/fix PRs should add one atomic (as small as possible) feature or fix. - [ ] The code compiles and all the tests pass.
- Loading branch information
1 parent
295e543
commit df52d84
Showing
2 changed files
with
44 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,22 @@ | ||
# Generated by Django 2.2.24 on 2023-08-16 00:13 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("companies", "0029_auto_20210918_2247"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="company", | ||
name="invoice_email_address", | ||
field=models.EmailField( | ||
blank=True, | ||
max_length=200, | ||
null=True, | ||
verbose_name="Invoice e-mail address", | ||
), | ||
), | ||
] |
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,22 @@ | ||
# Generated by Django 2.2.24 on 2023-08-16 00:13 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("exhibitors", "0067_add_transport_information_read"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="exhibitor", | ||
name="catalogue_contact_email_address", | ||
field=models.EmailField( | ||
blank=True, | ||
max_length=255, | ||
null=True, | ||
verbose_name="Contact person's e-mail address", | ||
), | ||
), | ||
] |