Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
didrikmunther committed Oct 3, 2024
1 parent 95da498 commit c1cf92c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
20 changes: 10 additions & 10 deletions exhibitors/migrations/0076_remove_gis_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,30 +6,30 @@
class Migration(migrations.Migration):

dependencies = [
('exhibitors', '0075_change_exhibitor_application_status'),
("exhibitors", "0075_change_exhibitor_application_status"),
]

operations = [
migrations.AlterUniqueTogether(
name='exhibitorinbooth',
name="exhibitorinbooth",
unique_together=None,
),
migrations.RemoveField(
model_name='exhibitorinbooth',
name='booth',
model_name="exhibitorinbooth",
name="booth",
),
migrations.RemoveField(
model_name='exhibitorinbooth',
name='days',
model_name="exhibitorinbooth",
name="days",
),
migrations.RemoveField(
model_name='exhibitorinbooth',
name='exhibitor',
model_name="exhibitorinbooth",
name="exhibitor",
),
migrations.DeleteModel(
name='Booth',
name="Booth",
),
migrations.DeleteModel(
name='ExhibitorInBooth',
name="ExhibitorInBooth",
),
]
6 changes: 3 additions & 3 deletions people/migrations/0016_add_show_in_banquet.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
class Migration(migrations.Migration):

dependencies = [
('people', '0015_remove_dietary_preferences'),
("people", "0015_remove_dietary_preferences"),
]

operations = [
migrations.AddField(
model_name='dietaryrestriction',
name='show_in_banquet',
model_name="dietaryrestriction",
name="show_in_banquet",
field=models.BooleanField(default=True),
),
]

0 comments on commit c1cf92c

Please sign in to comment.