Skip to content

Commit 68e356d

Browse files
committed
Fix backfill mixin
1 parent 594e2b8 commit 68e356d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/sentry/models/integrations/pagerduty_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414

1515
@region_silo_only_model
16-
class PagerDutyService(DefaultFieldsModel, OrganizationIntegrityBackfillMixin):
16+
class PagerDutyService(OrganizationIntegrityBackfillMixin, DefaultFieldsModel):
1717
__include_in_export__ = False
1818

1919
organization_integration = FlexibleForeignKey("sentry.OrganizationIntegration")

src/sentry/models/integrations/repository_project_path_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414

1515
@region_silo_only_model
16-
class RepositoryProjectPathConfig(DefaultFieldsModel, OrganizationIntegrityBackfillMixin):
16+
class RepositoryProjectPathConfig(OrganizationIntegrityBackfillMixin, DefaultFieldsModel):
1717
__include_in_export__ = False
1818

1919
repository = FlexibleForeignKey("sentry.Repository")

0 commit comments

Comments
 (0)