Skip to content

Commit

Permalink
chore: Automigrate (#926)
Browse files Browse the repository at this point in the history
## 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
didrikmunther authored Aug 15, 2023
1 parent 295e543 commit df52d84
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
22 changes: 22 additions & 0 deletions companies/migrations/0030_auto_20230816_0013.py
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",
),
),
]
22 changes: 22 additions & 0 deletions exhibitors/migrations/0068_auto_20230816_0013.py
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",
),
),
]

0 comments on commit df52d84

Please sign in to comment.