@@ -185,7 +185,7 @@ class Incident(Model):
185185 - UI should be able to handle multiple active incidents
186186 """
187187
188- __relocation_scope__ = RelocationScope .Organization
188+ __relocation_scope__ = RelocationScope .Global
189189
190190 objects : ClassVar [IncidentManager ] = IncidentManager ()
191191
@@ -250,7 +250,7 @@ def normalize_before_relocation_import(
250250
251251@region_silo_model
252252class PendingIncidentSnapshot (Model ):
253- __relocation_scope__ = RelocationScope .Organization
253+ __relocation_scope__ = RelocationScope .Global
254254
255255 incident = OneToOneCascadeDeletes ("sentry.Incident" , db_constraint = False )
256256 target_run_date = models .DateTimeField (db_index = True , default = timezone .now )
@@ -263,7 +263,7 @@ class Meta:
263263
264264@region_silo_model
265265class IncidentSnapshot (Model ):
266- __relocation_scope__ = RelocationScope .Organization
266+ __relocation_scope__ = RelocationScope .Global
267267
268268 incident = OneToOneCascadeDeletes ("sentry.Incident" , db_constraint = False )
269269 event_stats_snapshot = FlexibleForeignKey ("sentry.TimeSeriesSnapshot" , db_constraint = False )
@@ -278,7 +278,7 @@ class Meta:
278278
279279@region_silo_model
280280class TimeSeriesSnapshot (Model ):
281- __relocation_scope__ = RelocationScope .Organization
281+ __relocation_scope__ = RelocationScope .Global
282282 __relocation_dependencies__ = {"sentry.Incident" }
283283
284284 start = models .DateTimeField ()
@@ -313,7 +313,7 @@ class IncidentActivity(Model):
313313 An IncidentActivity is a record of a change that occurred in an Incident. This could be a status change,
314314 """
315315
316- __relocation_scope__ = RelocationScope .Organization
316+ __relocation_scope__ = RelocationScope .Global
317317
318318 incident = FlexibleForeignKey ("sentry.Incident" )
319319 user_id = HybridCloudForeignKey (settings .AUTH_USER_MODEL , on_delete = "CASCADE" , null = True )
@@ -348,7 +348,7 @@ class IncidentSubscription(Model):
348348 Not to be confused with a snuba QuerySubscription
349349 """
350350
351- __relocation_scope__ = RelocationScope .Organization
351+ __relocation_scope__ = RelocationScope .Global
352352
353353 incident = FlexibleForeignKey ("sentry.Incident" , db_index = False )
354354 user_id = HybridCloudForeignKey (settings .AUTH_USER_MODEL , on_delete = "CASCADE" )
@@ -405,7 +405,7 @@ class IncidentTrigger(Model):
405405 NOTE: dissimilar to an AlertRuleTrigger which represents the trigger threshold required to initialize an Incident
406406 """
407407
408- __relocation_scope__ = RelocationScope .Organization
408+ __relocation_scope__ = RelocationScope .Global
409409
410410 objects : ClassVar [IncidentTriggerManager ] = IncidentTriggerManager ()
411411
0 commit comments