detailed.json 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384
  1. {
  2. "nodestore.Node": {
  3. "foreign_keys": {},
  4. "model": "nodestore.Node",
  5. "relocation_scope": "Excluded",
  6. "silos": [
  7. "Region"
  8. ]
  9. },
  10. "replays.ReplayRecordingSegment": {
  11. "foreign_keys": {},
  12. "model": "replays.ReplayRecordingSegment",
  13. "relocation_scope": "Excluded",
  14. "silos": [
  15. "Region"
  16. ]
  17. },
  18. "sentry.Activity": {
  19. "foreign_keys": {
  20. "group": {
  21. "kind": "FlexibleForeignKey",
  22. "model": "sentry.Group"
  23. },
  24. "project": {
  25. "kind": "FlexibleForeignKey",
  26. "model": "sentry.Project"
  27. },
  28. "user_id": {
  29. "kind": "HybridCloudForeignKey",
  30. "model": "sentry.User"
  31. }
  32. },
  33. "model": "sentry.Activity",
  34. "relocation_scope": "Excluded",
  35. "silos": [
  36. "Region"
  37. ]
  38. },
  39. "sentry.Actor": {
  40. "foreign_keys": {
  41. "user_id": {
  42. "kind": "HybridCloudForeignKey",
  43. "model": "sentry.User"
  44. }
  45. },
  46. "model": "sentry.Actor",
  47. "relocation_scope": "Organization",
  48. "silos": [
  49. "Region"
  50. ]
  51. },
  52. "sentry.AlertRule": {
  53. "foreign_keys": {
  54. "organization": {
  55. "kind": "FlexibleForeignKey",
  56. "model": "sentry.Organization"
  57. },
  58. "owner": {
  59. "kind": "FlexibleForeignKey",
  60. "model": "sentry.Actor"
  61. },
  62. "snuba_query": {
  63. "kind": "FlexibleForeignKey",
  64. "model": "sentry.SnubaQuery"
  65. }
  66. },
  67. "model": "sentry.AlertRule",
  68. "relocation_scope": "Organization",
  69. "silos": [
  70. "Region"
  71. ]
  72. },
  73. "sentry.AlertRuleActivity": {
  74. "foreign_keys": {
  75. "alert_rule": {
  76. "kind": "FlexibleForeignKey",
  77. "model": "sentry.AlertRule"
  78. },
  79. "previous_alert_rule": {
  80. "kind": "FlexibleForeignKey",
  81. "model": "sentry.AlertRule"
  82. },
  83. "user_id": {
  84. "kind": "HybridCloudForeignKey",
  85. "model": "sentry.User"
  86. }
  87. },
  88. "model": "sentry.AlertRuleActivity",
  89. "relocation_scope": "Organization",
  90. "silos": [
  91. "Region"
  92. ]
  93. },
  94. "sentry.AlertRuleExcludedProjects": {
  95. "foreign_keys": {
  96. "alert_rule": {
  97. "kind": "FlexibleForeignKey",
  98. "model": "sentry.AlertRule"
  99. },
  100. "project": {
  101. "kind": "FlexibleForeignKey",
  102. "model": "sentry.Project"
  103. }
  104. },
  105. "model": "sentry.AlertRuleExcludedProjects",
  106. "relocation_scope": "Organization",
  107. "silos": [
  108. "Region"
  109. ]
  110. },
  111. "sentry.AlertRuleTrigger": {
  112. "foreign_keys": {
  113. "alert_rule": {
  114. "kind": "FlexibleForeignKey",
  115. "model": "sentry.AlertRule"
  116. }
  117. },
  118. "model": "sentry.AlertRuleTrigger",
  119. "relocation_scope": "Organization",
  120. "silos": [
  121. "Region"
  122. ]
  123. },
  124. "sentry.AlertRuleTriggerAction": {
  125. "foreign_keys": {
  126. "alert_rule_trigger": {
  127. "kind": "FlexibleForeignKey",
  128. "model": "sentry.AlertRuleTrigger"
  129. },
  130. "integration_id": {
  131. "kind": "HybridCloudForeignKey",
  132. "model": "sentry.Integration"
  133. },
  134. "sentry_app_id": {
  135. "kind": "HybridCloudForeignKey",
  136. "model": "sentry.SentryApp"
  137. }
  138. },
  139. "model": "sentry.AlertRuleTriggerAction",
  140. "relocation_scope": "Global",
  141. "silos": [
  142. "Region"
  143. ]
  144. },
  145. "sentry.AlertRuleTriggerExclusion": {
  146. "foreign_keys": {
  147. "alert_rule_trigger": {
  148. "kind": "FlexibleForeignKey",
  149. "model": "sentry.AlertRuleTrigger"
  150. },
  151. "query_subscription": {
  152. "kind": "FlexibleForeignKey",
  153. "model": "sentry.QuerySubscription"
  154. }
  155. },
  156. "model": "sentry.AlertRuleTriggerExclusion",
  157. "relocation_scope": "Organization",
  158. "silos": [
  159. "Region"
  160. ]
  161. },
  162. "sentry.ApiApplication": {
  163. "foreign_keys": {
  164. "owner": {
  165. "kind": "FlexibleForeignKey",
  166. "model": "sentry.User"
  167. }
  168. },
  169. "model": "sentry.ApiApplication",
  170. "relocation_scope": "Global",
  171. "silos": [
  172. "Control"
  173. ]
  174. },
  175. "sentry.ApiAuthorization": {
  176. "foreign_keys": {
  177. "application": {
  178. "kind": "FlexibleForeignKey",
  179. "model": "sentry.ApiApplication"
  180. },
  181. "user": {
  182. "kind": "FlexibleForeignKey",
  183. "model": "sentry.User"
  184. }
  185. },
  186. "model": "sentry.ApiAuthorization",
  187. "relocation_scope": "Global",
  188. "silos": [
  189. "Control"
  190. ]
  191. },
  192. "sentry.ApiGrant": {
  193. "foreign_keys": {
  194. "application": {
  195. "kind": "FlexibleForeignKey",
  196. "model": "sentry.ApiApplication"
  197. },
  198. "user": {
  199. "kind": "FlexibleForeignKey",
  200. "model": "sentry.User"
  201. }
  202. },
  203. "model": "sentry.ApiGrant",
  204. "relocation_scope": "Global",
  205. "silos": [
  206. "Control"
  207. ]
  208. },
  209. "sentry.ApiKey": {
  210. "foreign_keys": {
  211. "organization_id": {
  212. "kind": "HybridCloudForeignKey",
  213. "model": "sentry.Organization"
  214. }
  215. },
  216. "model": "sentry.ApiKey",
  217. "relocation_scope": "Global",
  218. "silos": [
  219. "Control"
  220. ]
  221. },
  222. "sentry.ApiToken": {
  223. "foreign_keys": {
  224. "application": {
  225. "kind": "FlexibleForeignKey",
  226. "model": "sentry.ApiApplication"
  227. },
  228. "user": {
  229. "kind": "FlexibleForeignKey",
  230. "model": "sentry.User"
  231. }
  232. },
  233. "model": "sentry.ApiToken",
  234. "relocation_scope": "Global",
  235. "silos": [
  236. "Control"
  237. ]
  238. },
  239. "sentry.AppConnectBuild": {
  240. "foreign_keys": {
  241. "project": {
  242. "kind": "FlexibleForeignKey",
  243. "model": "sentry.Project"
  244. }
  245. },
  246. "model": "sentry.AppConnectBuild",
  247. "relocation_scope": "Excluded",
  248. "silos": [
  249. "Region"
  250. ]
  251. },
  252. "sentry.ArtifactBundle": {
  253. "foreign_keys": {
  254. "file": {
  255. "kind": "FlexibleForeignKey",
  256. "model": "sentry.File"
  257. },
  258. "organization_id": {
  259. "kind": "ImplicitForeignKey",
  260. "model": "sentry.Organization"
  261. }
  262. },
  263. "model": "sentry.ArtifactBundle",
  264. "relocation_scope": "Excluded",
  265. "silos": [
  266. "Region"
  267. ]
  268. },
  269. "sentry.ArtifactBundleFlatFileIndex": {
  270. "foreign_keys": {
  271. "project_id": {
  272. "kind": "ImplicitForeignKey",
  273. "model": "sentry.Project"
  274. }
  275. },
  276. "model": "sentry.ArtifactBundleFlatFileIndex",
  277. "relocation_scope": "Excluded",
  278. "silos": [
  279. "Region"
  280. ]
  281. },
  282. "sentry.ArtifactBundleIndex": {
  283. "foreign_keys": {
  284. "artifact_bundle": {
  285. "kind": "FlexibleForeignKey",
  286. "model": "sentry.ArtifactBundle"
  287. },
  288. "organization_id": {
  289. "kind": "ImplicitForeignKey",
  290. "model": "sentry.Organization"
  291. }
  292. },
  293. "model": "sentry.ArtifactBundleIndex",
  294. "relocation_scope": "Excluded",
  295. "silos": [
  296. "Region"
  297. ]
  298. },
  299. "sentry.AssistantActivity": {
  300. "foreign_keys": {
  301. "user": {
  302. "kind": "FlexibleForeignKey",
  303. "model": "sentry.User"
  304. }
  305. },
  306. "model": "sentry.AssistantActivity",
  307. "relocation_scope": "Excluded",
  308. "silos": [
  309. "Control"
  310. ]
  311. },
  312. "sentry.AuditLogEntry": {
  313. "foreign_keys": {
  314. "actor": {
  315. "kind": "FlexibleForeignKey",
  316. "model": "sentry.User"
  317. },
  318. "actor_key": {
  319. "kind": "FlexibleForeignKey",
  320. "model": "sentry.ApiKey"
  321. },
  322. "organization_id": {
  323. "kind": "HybridCloudForeignKey",
  324. "model": "sentry.Organization"
  325. },
  326. "target_user": {
  327. "kind": "FlexibleForeignKey",
  328. "model": "sentry.User"
  329. }
  330. },
  331. "model": "sentry.AuditLogEntry",
  332. "relocation_scope": "Excluded",
  333. "silos": [
  334. "Control"
  335. ]
  336. },
  337. "sentry.AuthIdentity": {
  338. "foreign_keys": {
  339. "auth_provider": {
  340. "kind": "FlexibleForeignKey",
  341. "model": "sentry.AuthProvider"
  342. },
  343. "user": {
  344. "kind": "FlexibleForeignKey",
  345. "model": "sentry.User"
  346. }
  347. },
  348. "model": "sentry.AuthIdentity",
  349. "relocation_scope": "Global",
  350. "silos": [
  351. "Control"
  352. ]
  353. },
  354. "sentry.AuthIdentityReplica": {
  355. "foreign_keys": {
  356. "auth_identity_id": {
  357. "kind": "HybridCloudForeignKey",
  358. "model": "sentry.AuthIdentity"
  359. },
  360. "auth_provider_id": {
  361. "kind": "HybridCloudForeignKey",
  362. "model": "sentry.AuthProvider"
  363. },
  364. "user_id": {
  365. "kind": "HybridCloudForeignKey",
  366. "model": "sentry.User"
  367. }
  368. },
  369. "model": "sentry.AuthIdentityReplica",
  370. "relocation_scope": "Excluded",
  371. "silos": [
  372. "Region"
  373. ]
  374. },
  375. "sentry.AuthProvider": {
  376. "foreign_keys": {
  377. "organization_id": {
  378. "kind": "HybridCloudForeignKey",
  379. "model": "sentry.Organization"
  380. }
  381. },
  382. "model": "sentry.AuthProvider",
  383. "relocation_scope": "Global",
  384. "silos": [
  385. "Control"
  386. ]
  387. },
  388. "sentry.AuthProviderDefaultTeams": {
  389. "foreign_keys": {
  390. "authprovider_id": {
  391. "kind": "ImplicitForeignKey",
  392. "model": "sentry.AuthProvider"
  393. },
  394. "team_id": {
  395. "kind": "ImplicitForeignKey",
  396. "model": "sentry.Team"
  397. }
  398. },
  399. "model": "sentry.AuthProviderDefaultTeams",
  400. "relocation_scope": "Excluded",
  401. "silos": [
  402. "Control"
  403. ]
  404. },
  405. "sentry.AuthProviderReplica": {
  406. "foreign_keys": {
  407. "auth_provider_id": {
  408. "kind": "HybridCloudForeignKey",
  409. "model": "sentry.AuthProvider"
  410. },
  411. "organization": {
  412. "kind": "FlexibleForeignKey",
  413. "model": "sentry.Organization"
  414. }
  415. },
  416. "model": "sentry.AuthProviderReplica",
  417. "relocation_scope": "Excluded",
  418. "silos": [
  419. "Region"
  420. ]
  421. },
  422. "sentry.Authenticator": {
  423. "foreign_keys": {
  424. "user": {
  425. "kind": "FlexibleForeignKey",
  426. "model": "sentry.User"
  427. }
  428. },
  429. "model": "sentry.Authenticator",
  430. "relocation_scope": "User",
  431. "silos": [
  432. "Control"
  433. ]
  434. },
  435. "sentry.Broadcast": {
  436. "foreign_keys": {},
  437. "model": "sentry.Broadcast",
  438. "relocation_scope": "Excluded",
  439. "silos": [
  440. "Control"
  441. ]
  442. },
  443. "sentry.BroadcastSeen": {
  444. "foreign_keys": {
  445. "broadcast": {
  446. "kind": "FlexibleForeignKey",
  447. "model": "sentry.Broadcast"
  448. },
  449. "user": {
  450. "kind": "FlexibleForeignKey",
  451. "model": "sentry.User"
  452. }
  453. },
  454. "model": "sentry.BroadcastSeen",
  455. "relocation_scope": "Excluded",
  456. "silos": [
  457. "Control"
  458. ]
  459. },
  460. "sentry.Commit": {
  461. "foreign_keys": {
  462. "author": {
  463. "kind": "FlexibleForeignKey",
  464. "model": "sentry.CommitAuthor"
  465. },
  466. "organization_id": {
  467. "kind": "ImplicitForeignKey",
  468. "model": "sentry.Organization"
  469. },
  470. "repository_id": {
  471. "kind": "ImplicitForeignKey",
  472. "model": "sentry.Repository"
  473. }
  474. },
  475. "model": "sentry.Commit",
  476. "relocation_scope": "Excluded",
  477. "silos": [
  478. "Region"
  479. ]
  480. },
  481. "sentry.CommitAuthor": {
  482. "foreign_keys": {
  483. "organization_id": {
  484. "kind": "ImplicitForeignKey",
  485. "model": "sentry.Organization"
  486. }
  487. },
  488. "model": "sentry.CommitAuthor",
  489. "relocation_scope": "Excluded",
  490. "silos": [
  491. "Region"
  492. ]
  493. },
  494. "sentry.CommitFileChange": {
  495. "foreign_keys": {
  496. "commit": {
  497. "kind": "FlexibleForeignKey",
  498. "model": "sentry.Commit"
  499. },
  500. "organization_id": {
  501. "kind": "ImplicitForeignKey",
  502. "model": "sentry.Organization"
  503. }
  504. },
  505. "model": "sentry.CommitFileChange",
  506. "relocation_scope": "Excluded",
  507. "silos": [
  508. "Region"
  509. ]
  510. },
  511. "sentry.ControlFile": {
  512. "foreign_keys": {},
  513. "model": "sentry.ControlFile",
  514. "relocation_scope": "Excluded",
  515. "silos": [
  516. "Control"
  517. ]
  518. },
  519. "sentry.ControlFileBlob": {
  520. "foreign_keys": {},
  521. "model": "sentry.ControlFileBlob",
  522. "relocation_scope": "Excluded",
  523. "silos": [
  524. "Control"
  525. ]
  526. },
  527. "sentry.ControlFileBlobIndex": {
  528. "foreign_keys": {
  529. "blob": {
  530. "kind": "FlexibleForeignKey",
  531. "model": "sentry.ControlFileBlob"
  532. },
  533. "file": {
  534. "kind": "FlexibleForeignKey",
  535. "model": "sentry.ControlFile"
  536. }
  537. },
  538. "model": "sentry.ControlFileBlobIndex",
  539. "relocation_scope": "Excluded",
  540. "silos": [
  541. "Control"
  542. ]
  543. },
  544. "sentry.ControlFileBlobOwner": {
  545. "foreign_keys": {
  546. "blob": {
  547. "kind": "FlexibleForeignKey",
  548. "model": "sentry.ControlFileBlob"
  549. },
  550. "organization_id": {
  551. "kind": "ImplicitForeignKey",
  552. "model": "sentry.Organization"
  553. }
  554. },
  555. "model": "sentry.ControlFileBlobOwner",
  556. "relocation_scope": "Excluded",
  557. "silos": [
  558. "Control"
  559. ]
  560. },
  561. "sentry.ControlOption": {
  562. "foreign_keys": {},
  563. "model": "sentry.ControlOption",
  564. "relocation_scope": "Global",
  565. "silos": [
  566. "Control"
  567. ]
  568. },
  569. "sentry.ControlOutbox": {
  570. "foreign_keys": {},
  571. "model": "sentry.ControlOutbox",
  572. "relocation_scope": "Excluded",
  573. "silos": [
  574. "Control"
  575. ]
  576. },
  577. "sentry.ControlTombstone": {
  578. "foreign_keys": {},
  579. "model": "sentry.ControlTombstone",
  580. "relocation_scope": "Excluded",
  581. "silos": [
  582. "Control"
  583. ]
  584. },
  585. "sentry.Counter": {
  586. "foreign_keys": {
  587. "project": {
  588. "kind": "FlexibleForeignKey",
  589. "model": "sentry.Project"
  590. }
  591. },
  592. "model": "sentry.Counter",
  593. "relocation_scope": "Organization",
  594. "silos": [
  595. "Region"
  596. ]
  597. },
  598. "sentry.Dashboard": {
  599. "foreign_keys": {
  600. "created_by_id": {
  601. "kind": "HybridCloudForeignKey",
  602. "model": "sentry.User"
  603. },
  604. "organization": {
  605. "kind": "FlexibleForeignKey",
  606. "model": "sentry.Organization"
  607. }
  608. },
  609. "model": "sentry.Dashboard",
  610. "relocation_scope": "Organization",
  611. "silos": [
  612. "Region"
  613. ]
  614. },
  615. "sentry.DashboardProject": {
  616. "foreign_keys": {
  617. "dashboard": {
  618. "kind": "FlexibleForeignKey",
  619. "model": "sentry.Dashboard"
  620. },
  621. "project": {
  622. "kind": "FlexibleForeignKey",
  623. "model": "sentry.Project"
  624. }
  625. },
  626. "model": "sentry.DashboardProject",
  627. "relocation_scope": "Excluded",
  628. "silos": [
  629. "Region"
  630. ]
  631. },
  632. "sentry.DashboardTombstone": {
  633. "foreign_keys": {
  634. "organization": {
  635. "kind": "FlexibleForeignKey",
  636. "model": "sentry.Organization"
  637. }
  638. },
  639. "model": "sentry.DashboardTombstone",
  640. "relocation_scope": "Organization",
  641. "silos": [
  642. "Region"
  643. ]
  644. },
  645. "sentry.DashboardWidget": {
  646. "foreign_keys": {
  647. "dashboard": {
  648. "kind": "FlexibleForeignKey",
  649. "model": "sentry.Dashboard"
  650. }
  651. },
  652. "model": "sentry.DashboardWidget",
  653. "relocation_scope": "Organization",
  654. "silos": [
  655. "Region"
  656. ]
  657. },
  658. "sentry.DashboardWidgetQuery": {
  659. "foreign_keys": {
  660. "widget": {
  661. "kind": "FlexibleForeignKey",
  662. "model": "sentry.DashboardWidget"
  663. }
  664. },
  665. "model": "sentry.DashboardWidgetQuery",
  666. "relocation_scope": "Organization",
  667. "silos": [
  668. "Region"
  669. ]
  670. },
  671. "sentry.DebugIdArtifactBundle": {
  672. "foreign_keys": {
  673. "artifact_bundle": {
  674. "kind": "FlexibleForeignKey",
  675. "model": "sentry.ArtifactBundle"
  676. },
  677. "organization_id": {
  678. "kind": "ImplicitForeignKey",
  679. "model": "sentry.Organization"
  680. }
  681. },
  682. "model": "sentry.DebugIdArtifactBundle",
  683. "relocation_scope": "Excluded",
  684. "silos": [
  685. "Region"
  686. ]
  687. },
  688. "sentry.DeletedOrganization": {
  689. "foreign_keys": {},
  690. "model": "sentry.DeletedOrganization",
  691. "relocation_scope": "Excluded",
  692. "silos": [
  693. "Region"
  694. ]
  695. },
  696. "sentry.DeletedProject": {
  697. "foreign_keys": {
  698. "organization_id": {
  699. "kind": "ImplicitForeignKey",
  700. "model": "sentry.Organization"
  701. }
  702. },
  703. "model": "sentry.DeletedProject",
  704. "relocation_scope": "Excluded",
  705. "silos": [
  706. "Region"
  707. ]
  708. },
  709. "sentry.DeletedTeam": {
  710. "foreign_keys": {
  711. "organization_id": {
  712. "kind": "ImplicitForeignKey",
  713. "model": "sentry.Organization"
  714. }
  715. },
  716. "model": "sentry.DeletedTeam",
  717. "relocation_scope": "Excluded",
  718. "silos": [
  719. "Region"
  720. ]
  721. },
  722. "sentry.Deploy": {
  723. "foreign_keys": {
  724. "environment_id": {
  725. "kind": "ImplicitForeignKey",
  726. "model": "sentry.Environment"
  727. },
  728. "organization_id": {
  729. "kind": "ImplicitForeignKey",
  730. "model": "sentry.Organization"
  731. },
  732. "release": {
  733. "kind": "FlexibleForeignKey",
  734. "model": "sentry.Release"
  735. }
  736. },
  737. "model": "sentry.Deploy",
  738. "relocation_scope": "Excluded",
  739. "silos": [
  740. "Region"
  741. ]
  742. },
  743. "sentry.DiscoverSavedQuery": {
  744. "foreign_keys": {
  745. "created_by_id": {
  746. "kind": "HybridCloudForeignKey",
  747. "model": "sentry.User"
  748. },
  749. "organization": {
  750. "kind": "FlexibleForeignKey",
  751. "model": "sentry.Organization"
  752. }
  753. },
  754. "model": "sentry.DiscoverSavedQuery",
  755. "relocation_scope": "Excluded",
  756. "silos": [
  757. "Region"
  758. ]
  759. },
  760. "sentry.DiscoverSavedQueryProject": {
  761. "foreign_keys": {
  762. "discover_saved_query": {
  763. "kind": "FlexibleForeignKey",
  764. "model": "sentry.DiscoverSavedQuery"
  765. },
  766. "project": {
  767. "kind": "FlexibleForeignKey",
  768. "model": "sentry.Project"
  769. }
  770. },
  771. "model": "sentry.DiscoverSavedQueryProject",
  772. "relocation_scope": "Excluded",
  773. "silos": [
  774. "Region"
  775. ]
  776. },
  777. "sentry.Distribution": {
  778. "foreign_keys": {
  779. "organization_id": {
  780. "kind": "ImplicitForeignKey",
  781. "model": "sentry.Organization"
  782. },
  783. "release": {
  784. "kind": "FlexibleForeignKey",
  785. "model": "sentry.Release"
  786. }
  787. },
  788. "model": "sentry.Distribution",
  789. "relocation_scope": "Excluded",
  790. "silos": [
  791. "Region"
  792. ]
  793. },
  794. "sentry.DocIntegration": {
  795. "foreign_keys": {},
  796. "model": "sentry.DocIntegration",
  797. "relocation_scope": "Excluded",
  798. "silos": [
  799. "Control"
  800. ]
  801. },
  802. "sentry.DocIntegrationAvatar": {
  803. "foreign_keys": {
  804. "control_file_id": {
  805. "kind": "ImplicitForeignKey",
  806. "model": "sentry.ControlFile"
  807. },
  808. "doc_integration": {
  809. "kind": "FlexibleForeignKey",
  810. "model": "sentry.DocIntegration"
  811. },
  812. "file_id": {
  813. "kind": "ImplicitForeignKey",
  814. "model": "sentry.File"
  815. }
  816. },
  817. "model": "sentry.DocIntegrationAvatar",
  818. "relocation_scope": "Excluded",
  819. "silos": [
  820. "Control"
  821. ]
  822. },
  823. "sentry.Email": {
  824. "foreign_keys": {},
  825. "model": "sentry.Email",
  826. "relocation_scope": "User",
  827. "silos": [
  828. "Control"
  829. ]
  830. },
  831. "sentry.Environment": {
  832. "foreign_keys": {
  833. "organization_id": {
  834. "kind": "ImplicitForeignKey",
  835. "model": "sentry.Organization"
  836. }
  837. },
  838. "model": "sentry.Environment",
  839. "relocation_scope": "Organization",
  840. "silos": [
  841. "Region"
  842. ]
  843. },
  844. "sentry.EnvironmentProject": {
  845. "foreign_keys": {
  846. "environment": {
  847. "kind": "FlexibleForeignKey",
  848. "model": "sentry.Environment"
  849. },
  850. "project": {
  851. "kind": "FlexibleForeignKey",
  852. "model": "sentry.Project"
  853. }
  854. },
  855. "model": "sentry.EnvironmentProject",
  856. "relocation_scope": "Organization",
  857. "silos": [
  858. "Region"
  859. ]
  860. },
  861. "sentry.EventAttachment": {
  862. "foreign_keys": {
  863. "file_id": {
  864. "kind": "ImplicitForeignKey",
  865. "model": "sentry.File"
  866. },
  867. "group_id": {
  868. "kind": "ImplicitForeignKey",
  869. "model": "sentry.Group"
  870. },
  871. "project_id": {
  872. "kind": "ImplicitForeignKey",
  873. "model": "sentry.Project"
  874. }
  875. },
  876. "model": "sentry.EventAttachment",
  877. "relocation_scope": "Excluded",
  878. "silos": [
  879. "Region"
  880. ]
  881. },
  882. "sentry.EventProcessingIssue": {
  883. "foreign_keys": {
  884. "processing_issue": {
  885. "kind": "FlexibleForeignKey",
  886. "model": "sentry.ProcessingIssue"
  887. },
  888. "raw_event": {
  889. "kind": "FlexibleForeignKey",
  890. "model": "sentry.RawEvent"
  891. }
  892. },
  893. "model": "sentry.EventProcessingIssue",
  894. "relocation_scope": "Excluded",
  895. "silos": [
  896. "Region"
  897. ]
  898. },
  899. "sentry.EventUser": {
  900. "foreign_keys": {
  901. "project_id": {
  902. "kind": "ImplicitForeignKey",
  903. "model": "sentry.Project"
  904. }
  905. },
  906. "model": "sentry.EventUser",
  907. "relocation_scope": "Excluded",
  908. "silos": [
  909. "Region"
  910. ]
  911. },
  912. "sentry.ExportedData": {
  913. "foreign_keys": {
  914. "file_id": {
  915. "kind": "ImplicitForeignKey",
  916. "model": "sentry.File"
  917. },
  918. "organization": {
  919. "kind": "FlexibleForeignKey",
  920. "model": "sentry.Organization"
  921. },
  922. "user_id": {
  923. "kind": "HybridCloudForeignKey",
  924. "model": "sentry.User"
  925. }
  926. },
  927. "model": "sentry.ExportedData",
  928. "relocation_scope": "Excluded",
  929. "silos": [
  930. "Region"
  931. ]
  932. },
  933. "sentry.ExportedDataBlob": {
  934. "foreign_keys": {
  935. "data_export": {
  936. "kind": "FlexibleForeignKey",
  937. "model": "sentry.ExportedData"
  938. }
  939. },
  940. "model": "sentry.ExportedDataBlob",
  941. "relocation_scope": "Excluded",
  942. "silos": [
  943. "Region"
  944. ]
  945. },
  946. "sentry.ExternalActor": {
  947. "foreign_keys": {
  948. "actor": {
  949. "kind": "FlexibleForeignKey",
  950. "model": "sentry.Actor"
  951. },
  952. "integration_id": {
  953. "kind": "HybridCloudForeignKey",
  954. "model": "sentry.Integration"
  955. },
  956. "organization": {
  957. "kind": "FlexibleForeignKey",
  958. "model": "sentry.Organization"
  959. },
  960. "team": {
  961. "kind": "FlexibleForeignKey",
  962. "model": "sentry.Team"
  963. },
  964. "user_id": {
  965. "kind": "HybridCloudForeignKey",
  966. "model": "sentry.User"
  967. }
  968. },
  969. "model": "sentry.ExternalActor",
  970. "relocation_scope": "Excluded",
  971. "silos": [
  972. "Region"
  973. ]
  974. },
  975. "sentry.ExternalIssue": {
  976. "foreign_keys": {
  977. "integration_id": {
  978. "kind": "HybridCloudForeignKey",
  979. "model": "sentry.Integration"
  980. },
  981. "organization": {
  982. "kind": "FlexibleForeignKey",
  983. "model": "sentry.Organization"
  984. }
  985. },
  986. "model": "sentry.ExternalIssue",
  987. "relocation_scope": "Excluded",
  988. "silos": [
  989. "Region"
  990. ]
  991. },
  992. "sentry.FeatureAdoption": {
  993. "foreign_keys": {
  994. "organization": {
  995. "kind": "FlexibleForeignKey",
  996. "model": "sentry.Organization"
  997. }
  998. },
  999. "model": "sentry.FeatureAdoption",
  1000. "relocation_scope": "Excluded",
  1001. "silos": [
  1002. "Region"
  1003. ]
  1004. },
  1005. "sentry.File": {
  1006. "foreign_keys": {
  1007. "blob": {
  1008. "kind": "FlexibleForeignKey",
  1009. "model": "sentry.FileBlob"
  1010. }
  1011. },
  1012. "model": "sentry.File",
  1013. "relocation_scope": "Excluded",
  1014. "silos": [
  1015. "Region"
  1016. ]
  1017. },
  1018. "sentry.FileBlob": {
  1019. "foreign_keys": {},
  1020. "model": "sentry.FileBlob",
  1021. "relocation_scope": "Excluded",
  1022. "silos": [
  1023. "Region"
  1024. ]
  1025. },
  1026. "sentry.FileBlobIndex": {
  1027. "foreign_keys": {
  1028. "blob": {
  1029. "kind": "FlexibleForeignKey",
  1030. "model": "sentry.FileBlob"
  1031. },
  1032. "file": {
  1033. "kind": "FlexibleForeignKey",
  1034. "model": "sentry.File"
  1035. }
  1036. },
  1037. "model": "sentry.FileBlobIndex",
  1038. "relocation_scope": "Excluded",
  1039. "silos": [
  1040. "Region"
  1041. ]
  1042. },
  1043. "sentry.FileBlobOwner": {
  1044. "foreign_keys": {
  1045. "blob": {
  1046. "kind": "FlexibleForeignKey",
  1047. "model": "sentry.FileBlob"
  1048. },
  1049. "organization_id": {
  1050. "kind": "ImplicitForeignKey",
  1051. "model": "sentry.Organization"
  1052. }
  1053. },
  1054. "model": "sentry.FileBlobOwner",
  1055. "relocation_scope": "Excluded",
  1056. "silos": [
  1057. "Region"
  1058. ]
  1059. },
  1060. "sentry.FlatFileIndexState": {
  1061. "foreign_keys": {
  1062. "artifact_bundle": {
  1063. "kind": "FlexibleForeignKey",
  1064. "model": "sentry.ArtifactBundle"
  1065. },
  1066. "flat_file_index": {
  1067. "kind": "FlexibleForeignKey",
  1068. "model": "sentry.ArtifactBundleFlatFileIndex"
  1069. }
  1070. },
  1071. "model": "sentry.FlatFileIndexState",
  1072. "relocation_scope": "Excluded",
  1073. "silos": [
  1074. "Region"
  1075. ]
  1076. },
  1077. "sentry.Group": {
  1078. "foreign_keys": {
  1079. "first_release": {
  1080. "kind": "FlexibleForeignKey",
  1081. "model": "sentry.Release"
  1082. },
  1083. "project": {
  1084. "kind": "FlexibleForeignKey",
  1085. "model": "sentry.Project"
  1086. }
  1087. },
  1088. "model": "sentry.Group",
  1089. "relocation_scope": "Excluded",
  1090. "silos": [
  1091. "Region"
  1092. ]
  1093. },
  1094. "sentry.GroupAssignee": {
  1095. "foreign_keys": {
  1096. "group": {
  1097. "kind": "FlexibleForeignKey",
  1098. "model": "sentry.Group"
  1099. },
  1100. "project": {
  1101. "kind": "FlexibleForeignKey",
  1102. "model": "sentry.Project"
  1103. },
  1104. "team": {
  1105. "kind": "FlexibleForeignKey",
  1106. "model": "sentry.Team"
  1107. },
  1108. "user_id": {
  1109. "kind": "HybridCloudForeignKey",
  1110. "model": "sentry.User"
  1111. }
  1112. },
  1113. "model": "sentry.GroupAssignee",
  1114. "relocation_scope": "Excluded",
  1115. "silos": [
  1116. "Region"
  1117. ]
  1118. },
  1119. "sentry.GroupBookmark": {
  1120. "foreign_keys": {
  1121. "group": {
  1122. "kind": "FlexibleForeignKey",
  1123. "model": "sentry.Group"
  1124. },
  1125. "project": {
  1126. "kind": "FlexibleForeignKey",
  1127. "model": "sentry.Project"
  1128. },
  1129. "user_id": {
  1130. "kind": "HybridCloudForeignKey",
  1131. "model": "sentry.User"
  1132. }
  1133. },
  1134. "model": "sentry.GroupBookmark",
  1135. "relocation_scope": "Excluded",
  1136. "silos": [
  1137. "Region"
  1138. ]
  1139. },
  1140. "sentry.GroupCommitResolution": {
  1141. "foreign_keys": {
  1142. "commit_id": {
  1143. "kind": "ImplicitForeignKey",
  1144. "model": "sentry.Commit"
  1145. },
  1146. "group_id": {
  1147. "kind": "ImplicitForeignKey",
  1148. "model": "sentry.Group"
  1149. }
  1150. },
  1151. "model": "sentry.GroupCommitResolution",
  1152. "relocation_scope": "Excluded",
  1153. "silos": [
  1154. "Region"
  1155. ]
  1156. },
  1157. "sentry.GroupEmailThread": {
  1158. "foreign_keys": {
  1159. "group": {
  1160. "kind": "FlexibleForeignKey",
  1161. "model": "sentry.Group"
  1162. },
  1163. "project": {
  1164. "kind": "FlexibleForeignKey",
  1165. "model": "sentry.Project"
  1166. }
  1167. },
  1168. "model": "sentry.GroupEmailThread",
  1169. "relocation_scope": "Excluded",
  1170. "silos": [
  1171. "Region"
  1172. ]
  1173. },
  1174. "sentry.GroupEnvironment": {
  1175. "foreign_keys": {
  1176. "environment": {
  1177. "kind": "FlexibleForeignKey",
  1178. "model": "sentry.Environment"
  1179. },
  1180. "first_release": {
  1181. "kind": "FlexibleForeignKey",
  1182. "model": "sentry.Release"
  1183. },
  1184. "group": {
  1185. "kind": "FlexibleForeignKey",
  1186. "model": "sentry.Group"
  1187. }
  1188. },
  1189. "model": "sentry.GroupEnvironment",
  1190. "relocation_scope": "Excluded",
  1191. "silos": [
  1192. "Region"
  1193. ]
  1194. },
  1195. "sentry.GroupHash": {
  1196. "foreign_keys": {
  1197. "group": {
  1198. "kind": "FlexibleForeignKey",
  1199. "model": "sentry.Group"
  1200. },
  1201. "group_tombstone_id": {
  1202. "kind": "ImplicitForeignKey",
  1203. "model": "sentry.GroupTombstone"
  1204. },
  1205. "project": {
  1206. "kind": "FlexibleForeignKey",
  1207. "model": "sentry.Project"
  1208. }
  1209. },
  1210. "model": "sentry.GroupHash",
  1211. "relocation_scope": "Excluded",
  1212. "silos": [
  1213. "Region"
  1214. ]
  1215. },
  1216. "sentry.GroupHistory": {
  1217. "foreign_keys": {
  1218. "actor": {
  1219. "kind": "FlexibleForeignKey",
  1220. "model": "sentry.Actor"
  1221. },
  1222. "group": {
  1223. "kind": "FlexibleForeignKey",
  1224. "model": "sentry.Group"
  1225. },
  1226. "organization": {
  1227. "kind": "FlexibleForeignKey",
  1228. "model": "sentry.Organization"
  1229. },
  1230. "project": {
  1231. "kind": "FlexibleForeignKey",
  1232. "model": "sentry.Project"
  1233. },
  1234. "release": {
  1235. "kind": "FlexibleForeignKey",
  1236. "model": "sentry.Release"
  1237. }
  1238. },
  1239. "model": "sentry.GroupHistory",
  1240. "relocation_scope": "Excluded",
  1241. "silos": [
  1242. "Region"
  1243. ]
  1244. },
  1245. "sentry.GroupInbox": {
  1246. "foreign_keys": {
  1247. "group": {
  1248. "kind": "FlexibleForeignKey",
  1249. "model": "sentry.Group"
  1250. },
  1251. "organization": {
  1252. "kind": "FlexibleForeignKey",
  1253. "model": "sentry.Organization"
  1254. },
  1255. "project": {
  1256. "kind": "FlexibleForeignKey",
  1257. "model": "sentry.Project"
  1258. }
  1259. },
  1260. "model": "sentry.GroupInbox",
  1261. "relocation_scope": "Excluded",
  1262. "silos": [
  1263. "Region"
  1264. ]
  1265. },
  1266. "sentry.GroupLink": {
  1267. "foreign_keys": {
  1268. "group": {
  1269. "kind": "FlexibleForeignKey",
  1270. "model": "sentry.Group"
  1271. },
  1272. "project": {
  1273. "kind": "FlexibleForeignKey",
  1274. "model": "sentry.Project"
  1275. }
  1276. },
  1277. "model": "sentry.GroupLink",
  1278. "relocation_scope": "Excluded",
  1279. "silos": [
  1280. "Region"
  1281. ]
  1282. },
  1283. "sentry.GroupMeta": {
  1284. "foreign_keys": {
  1285. "group": {
  1286. "kind": "FlexibleForeignKey",
  1287. "model": "sentry.Group"
  1288. }
  1289. },
  1290. "model": "sentry.GroupMeta",
  1291. "relocation_scope": "Excluded",
  1292. "silos": [
  1293. "Region"
  1294. ]
  1295. },
  1296. "sentry.GroupOwner": {
  1297. "foreign_keys": {
  1298. "group": {
  1299. "kind": "FlexibleForeignKey",
  1300. "model": "sentry.Group"
  1301. },
  1302. "organization": {
  1303. "kind": "FlexibleForeignKey",
  1304. "model": "sentry.Organization"
  1305. },
  1306. "project": {
  1307. "kind": "FlexibleForeignKey",
  1308. "model": "sentry.Project"
  1309. },
  1310. "team": {
  1311. "kind": "FlexibleForeignKey",
  1312. "model": "sentry.Team"
  1313. },
  1314. "user_id": {
  1315. "kind": "HybridCloudForeignKey",
  1316. "model": "sentry.User"
  1317. }
  1318. },
  1319. "model": "sentry.GroupOwner",
  1320. "relocation_scope": "Excluded",
  1321. "silos": [
  1322. "Region"
  1323. ]
  1324. },
  1325. "sentry.GroupRedirect": {
  1326. "foreign_keys": {
  1327. "group_id": {
  1328. "kind": "ImplicitForeignKey",
  1329. "model": "sentry.Group"
  1330. },
  1331. "organization_id": {
  1332. "kind": "ImplicitForeignKey",
  1333. "model": "sentry.Organization"
  1334. }
  1335. },
  1336. "model": "sentry.GroupRedirect",
  1337. "relocation_scope": "Excluded",
  1338. "silos": [
  1339. "Region"
  1340. ]
  1341. },
  1342. "sentry.GroupRelease": {
  1343. "foreign_keys": {
  1344. "group_id": {
  1345. "kind": "ImplicitForeignKey",
  1346. "model": "sentry.Group"
  1347. },
  1348. "project_id": {
  1349. "kind": "ImplicitForeignKey",
  1350. "model": "sentry.Project"
  1351. },
  1352. "release_id": {
  1353. "kind": "ImplicitForeignKey",
  1354. "model": "sentry.Release"
  1355. }
  1356. },
  1357. "model": "sentry.GroupRelease",
  1358. "relocation_scope": "Excluded",
  1359. "silos": [
  1360. "Region"
  1361. ]
  1362. },
  1363. "sentry.GroupResolution": {
  1364. "foreign_keys": {
  1365. "group": {
  1366. "kind": "FlexibleForeignKey",
  1367. "model": "sentry.Group"
  1368. },
  1369. "release": {
  1370. "kind": "FlexibleForeignKey",
  1371. "model": "sentry.Release"
  1372. }
  1373. },
  1374. "model": "sentry.GroupResolution",
  1375. "relocation_scope": "Excluded",
  1376. "silos": [
  1377. "Region"
  1378. ]
  1379. },
  1380. "sentry.GroupRuleStatus": {
  1381. "foreign_keys": {
  1382. "group": {
  1383. "kind": "FlexibleForeignKey",
  1384. "model": "sentry.Group"
  1385. },
  1386. "project": {
  1387. "kind": "FlexibleForeignKey",
  1388. "model": "sentry.Project"
  1389. },
  1390. "rule": {
  1391. "kind": "FlexibleForeignKey",
  1392. "model": "sentry.Rule"
  1393. }
  1394. },
  1395. "model": "sentry.GroupRuleStatus",
  1396. "relocation_scope": "Excluded",
  1397. "silos": [
  1398. "Region"
  1399. ]
  1400. },
  1401. "sentry.GroupSeen": {
  1402. "foreign_keys": {
  1403. "group": {
  1404. "kind": "FlexibleForeignKey",
  1405. "model": "sentry.Group"
  1406. },
  1407. "project": {
  1408. "kind": "FlexibleForeignKey",
  1409. "model": "sentry.Project"
  1410. },
  1411. "user_id": {
  1412. "kind": "HybridCloudForeignKey",
  1413. "model": "sentry.User"
  1414. }
  1415. },
  1416. "model": "sentry.GroupSeen",
  1417. "relocation_scope": "Excluded",
  1418. "silos": [
  1419. "Region"
  1420. ]
  1421. },
  1422. "sentry.GroupShare": {
  1423. "foreign_keys": {
  1424. "group": {
  1425. "kind": "FlexibleForeignKey",
  1426. "model": "sentry.Group"
  1427. },
  1428. "project": {
  1429. "kind": "FlexibleForeignKey",
  1430. "model": "sentry.Project"
  1431. },
  1432. "user_id": {
  1433. "kind": "HybridCloudForeignKey",
  1434. "model": "sentry.User"
  1435. }
  1436. },
  1437. "model": "sentry.GroupShare",
  1438. "relocation_scope": "Excluded",
  1439. "silos": [
  1440. "Region"
  1441. ]
  1442. },
  1443. "sentry.GroupSnooze": {
  1444. "foreign_keys": {
  1445. "group": {
  1446. "kind": "FlexibleForeignKey",
  1447. "model": "sentry.Group"
  1448. }
  1449. },
  1450. "model": "sentry.GroupSnooze",
  1451. "relocation_scope": "Excluded",
  1452. "silos": [
  1453. "Region"
  1454. ]
  1455. },
  1456. "sentry.GroupSubscription": {
  1457. "foreign_keys": {
  1458. "group": {
  1459. "kind": "FlexibleForeignKey",
  1460. "model": "sentry.Group"
  1461. },
  1462. "project": {
  1463. "kind": "FlexibleForeignKey",
  1464. "model": "sentry.Project"
  1465. },
  1466. "user_id": {
  1467. "kind": "HybridCloudForeignKey",
  1468. "model": "sentry.User"
  1469. }
  1470. },
  1471. "model": "sentry.GroupSubscription",
  1472. "relocation_scope": "Excluded",
  1473. "silos": [
  1474. "Region"
  1475. ]
  1476. },
  1477. "sentry.GroupTombstone": {
  1478. "foreign_keys": {
  1479. "project": {
  1480. "kind": "FlexibleForeignKey",
  1481. "model": "sentry.Project"
  1482. }
  1483. },
  1484. "model": "sentry.GroupTombstone",
  1485. "relocation_scope": "Excluded",
  1486. "silos": [
  1487. "Region"
  1488. ]
  1489. },
  1490. "sentry.Identity": {
  1491. "foreign_keys": {
  1492. "idp": {
  1493. "kind": "FlexibleForeignKey",
  1494. "model": "sentry.IdentityProvider"
  1495. },
  1496. "user": {
  1497. "kind": "FlexibleForeignKey",
  1498. "model": "sentry.User"
  1499. }
  1500. },
  1501. "model": "sentry.Identity",
  1502. "relocation_scope": "Excluded",
  1503. "silos": [
  1504. "Control"
  1505. ]
  1506. },
  1507. "sentry.IdentityProvider": {
  1508. "foreign_keys": {},
  1509. "model": "sentry.IdentityProvider",
  1510. "relocation_scope": "Excluded",
  1511. "silos": [
  1512. "Control"
  1513. ]
  1514. },
  1515. "sentry.Incident": {
  1516. "foreign_keys": {
  1517. "alert_rule": {
  1518. "kind": "FlexibleForeignKey",
  1519. "model": "sentry.AlertRule"
  1520. },
  1521. "organization": {
  1522. "kind": "FlexibleForeignKey",
  1523. "model": "sentry.Organization"
  1524. }
  1525. },
  1526. "model": "sentry.Incident",
  1527. "relocation_scope": "Organization",
  1528. "silos": [
  1529. "Region"
  1530. ]
  1531. },
  1532. "sentry.IncidentActivity": {
  1533. "foreign_keys": {
  1534. "incident": {
  1535. "kind": "FlexibleForeignKey",
  1536. "model": "sentry.Incident"
  1537. },
  1538. "user_id": {
  1539. "kind": "HybridCloudForeignKey",
  1540. "model": "sentry.User"
  1541. }
  1542. },
  1543. "model": "sentry.IncidentActivity",
  1544. "relocation_scope": "Organization",
  1545. "silos": [
  1546. "Region"
  1547. ]
  1548. },
  1549. "sentry.IncidentProject": {
  1550. "foreign_keys": {
  1551. "incident": {
  1552. "kind": "FlexibleForeignKey",
  1553. "model": "sentry.Incident"
  1554. },
  1555. "project": {
  1556. "kind": "FlexibleForeignKey",
  1557. "model": "sentry.Project"
  1558. }
  1559. },
  1560. "model": "sentry.IncidentProject",
  1561. "relocation_scope": "Excluded",
  1562. "silos": [
  1563. "Region"
  1564. ]
  1565. },
  1566. "sentry.IncidentSeen": {
  1567. "foreign_keys": {
  1568. "incident": {
  1569. "kind": "FlexibleForeignKey",
  1570. "model": "sentry.Incident"
  1571. },
  1572. "user_id": {
  1573. "kind": "HybridCloudForeignKey",
  1574. "model": "sentry.User"
  1575. }
  1576. },
  1577. "model": "sentry.IncidentSeen",
  1578. "relocation_scope": "Excluded",
  1579. "silos": [
  1580. "Region"
  1581. ]
  1582. },
  1583. "sentry.IncidentSnapshot": {
  1584. "foreign_keys": {
  1585. "event_stats_snapshot": {
  1586. "kind": "FlexibleForeignKey",
  1587. "model": "sentry.TimeSeriesSnapshot"
  1588. },
  1589. "incident": {
  1590. "kind": "OneToOneCascadeDeletes",
  1591. "model": "sentry.Incident"
  1592. }
  1593. },
  1594. "model": "sentry.IncidentSnapshot",
  1595. "relocation_scope": "Organization",
  1596. "silos": [
  1597. "Region"
  1598. ]
  1599. },
  1600. "sentry.IncidentSubscription": {
  1601. "foreign_keys": {
  1602. "incident": {
  1603. "kind": "FlexibleForeignKey",
  1604. "model": "sentry.Incident"
  1605. },
  1606. "user_id": {
  1607. "kind": "HybridCloudForeignKey",
  1608. "model": "sentry.User"
  1609. }
  1610. },
  1611. "model": "sentry.IncidentSubscription",
  1612. "relocation_scope": "Organization",
  1613. "silos": [
  1614. "Region"
  1615. ]
  1616. },
  1617. "sentry.IncidentTrigger": {
  1618. "foreign_keys": {
  1619. "alert_rule_trigger": {
  1620. "kind": "FlexibleForeignKey",
  1621. "model": "sentry.AlertRuleTrigger"
  1622. },
  1623. "incident": {
  1624. "kind": "FlexibleForeignKey",
  1625. "model": "sentry.Incident"
  1626. }
  1627. },
  1628. "model": "sentry.IncidentTrigger",
  1629. "relocation_scope": "Organization",
  1630. "silos": [
  1631. "Region"
  1632. ]
  1633. },
  1634. "sentry.Integration": {
  1635. "foreign_keys": {},
  1636. "model": "sentry.Integration",
  1637. "relocation_scope": "Global",
  1638. "silos": [
  1639. "Control"
  1640. ]
  1641. },
  1642. "sentry.IntegrationExternalProject": {
  1643. "foreign_keys": {
  1644. "organization_integration_id": {
  1645. "kind": "ImplicitForeignKey",
  1646. "model": "sentry.OrganizationIntegration"
  1647. }
  1648. },
  1649. "model": "sentry.IntegrationExternalProject",
  1650. "relocation_scope": "Excluded",
  1651. "silos": [
  1652. "Control"
  1653. ]
  1654. },
  1655. "sentry.IntegrationFeature": {
  1656. "foreign_keys": {},
  1657. "model": "sentry.IntegrationFeature",
  1658. "relocation_scope": "Excluded",
  1659. "silos": [
  1660. "Control"
  1661. ]
  1662. },
  1663. "sentry.LatestAppConnectBuildsCheck": {
  1664. "foreign_keys": {
  1665. "project": {
  1666. "kind": "FlexibleForeignKey",
  1667. "model": "sentry.Project"
  1668. }
  1669. },
  1670. "model": "sentry.LatestAppConnectBuildsCheck",
  1671. "relocation_scope": "Excluded",
  1672. "silos": [
  1673. "Region"
  1674. ]
  1675. },
  1676. "sentry.LatestRepoReleaseEnvironment": {
  1677. "foreign_keys": {
  1678. "commit_id": {
  1679. "kind": "ImplicitForeignKey",
  1680. "model": "sentry.Commit"
  1681. },
  1682. "deploy_id": {
  1683. "kind": "ImplicitForeignKey",
  1684. "model": "sentry.Deploy"
  1685. },
  1686. "environment_id": {
  1687. "kind": "ImplicitForeignKey",
  1688. "model": "sentry.Environment"
  1689. },
  1690. "release_id": {
  1691. "kind": "ImplicitForeignKey",
  1692. "model": "sentry.Release"
  1693. },
  1694. "repository_id": {
  1695. "kind": "ImplicitForeignKey",
  1696. "model": "sentry.Repository"
  1697. }
  1698. },
  1699. "model": "sentry.LatestRepoReleaseEnvironment",
  1700. "relocation_scope": "Excluded",
  1701. "silos": [
  1702. "Region"
  1703. ]
  1704. },
  1705. "sentry.LostPasswordHash": {
  1706. "foreign_keys": {
  1707. "user": {
  1708. "kind": "FlexibleForeignKey",
  1709. "model": "sentry.User"
  1710. }
  1711. },
  1712. "model": "sentry.LostPasswordHash",
  1713. "relocation_scope": "Excluded",
  1714. "silos": [
  1715. "Control"
  1716. ]
  1717. },
  1718. "sentry.MetricsKeyIndexer": {
  1719. "foreign_keys": {},
  1720. "model": "sentry.MetricsKeyIndexer",
  1721. "relocation_scope": "Excluded",
  1722. "silos": [
  1723. "Region"
  1724. ]
  1725. },
  1726. "sentry.Monitor": {
  1727. "foreign_keys": {
  1728. "organization_id": {
  1729. "kind": "ImplicitForeignKey",
  1730. "model": "sentry.Organization"
  1731. },
  1732. "project_id": {
  1733. "kind": "ImplicitForeignKey",
  1734. "model": "sentry.Project"
  1735. }
  1736. },
  1737. "model": "sentry.Monitor",
  1738. "relocation_scope": "Organization",
  1739. "silos": [
  1740. "Region"
  1741. ]
  1742. },
  1743. "sentry.MonitorCheckIn": {
  1744. "foreign_keys": {
  1745. "location": {
  1746. "kind": "FlexibleForeignKey",
  1747. "model": "sentry.MonitorLocation"
  1748. },
  1749. "monitor": {
  1750. "kind": "FlexibleForeignKey",
  1751. "model": "sentry.Monitor"
  1752. },
  1753. "monitor_environment": {
  1754. "kind": "FlexibleForeignKey",
  1755. "model": "sentry.MonitorEnvironment"
  1756. },
  1757. "project_id": {
  1758. "kind": "ImplicitForeignKey",
  1759. "model": "sentry.Project"
  1760. }
  1761. },
  1762. "model": "sentry.MonitorCheckIn",
  1763. "relocation_scope": "Excluded",
  1764. "silos": [
  1765. "Region"
  1766. ]
  1767. },
  1768. "sentry.MonitorEnvironment": {
  1769. "foreign_keys": {
  1770. "environment": {
  1771. "kind": "FlexibleForeignKey",
  1772. "model": "sentry.Environment"
  1773. },
  1774. "monitor": {
  1775. "kind": "FlexibleForeignKey",
  1776. "model": "sentry.Monitor"
  1777. }
  1778. },
  1779. "model": "sentry.MonitorEnvironment",
  1780. "relocation_scope": "Excluded",
  1781. "silos": [
  1782. "Region"
  1783. ]
  1784. },
  1785. "sentry.MonitorLocation": {
  1786. "foreign_keys": {},
  1787. "model": "sentry.MonitorLocation",
  1788. "relocation_scope": "Excluded",
  1789. "silos": [
  1790. "Region"
  1791. ]
  1792. },
  1793. "sentry.NotificationAction": {
  1794. "foreign_keys": {
  1795. "integration_id": {
  1796. "kind": "HybridCloudForeignKey",
  1797. "model": "sentry.Integration"
  1798. },
  1799. "organization": {
  1800. "kind": "FlexibleForeignKey",
  1801. "model": "sentry.Organization"
  1802. },
  1803. "sentry_app_id": {
  1804. "kind": "HybridCloudForeignKey",
  1805. "model": "sentry.SentryApp"
  1806. }
  1807. },
  1808. "model": "sentry.NotificationAction",
  1809. "relocation_scope": "Global",
  1810. "silos": [
  1811. "Region"
  1812. ]
  1813. },
  1814. "sentry.NotificationActionProject": {
  1815. "foreign_keys": {
  1816. "action": {
  1817. "kind": "FlexibleForeignKey",
  1818. "model": "sentry.NotificationAction"
  1819. },
  1820. "project": {
  1821. "kind": "FlexibleForeignKey",
  1822. "model": "sentry.Project"
  1823. }
  1824. },
  1825. "model": "sentry.NotificationActionProject",
  1826. "relocation_scope": "Global",
  1827. "silos": [
  1828. "Region"
  1829. ]
  1830. },
  1831. "sentry.NotificationSetting": {
  1832. "foreign_keys": {
  1833. "target_id": {
  1834. "kind": "HybridCloudForeignKey",
  1835. "model": "sentry.Actor"
  1836. },
  1837. "team_id": {
  1838. "kind": "HybridCloudForeignKey",
  1839. "model": "sentry.Team"
  1840. },
  1841. "user": {
  1842. "kind": "FlexibleForeignKey",
  1843. "model": "sentry.User"
  1844. }
  1845. },
  1846. "model": "sentry.NotificationSetting",
  1847. "relocation_scope": "Excluded",
  1848. "silos": [
  1849. "Control"
  1850. ]
  1851. },
  1852. "sentry.NotificationSettingOption": {
  1853. "foreign_keys": {
  1854. "team_id": {
  1855. "kind": "HybridCloudForeignKey",
  1856. "model": "sentry.Team"
  1857. },
  1858. "user": {
  1859. "kind": "FlexibleForeignKey",
  1860. "model": "sentry.User"
  1861. }
  1862. },
  1863. "model": "sentry.NotificationSettingOption",
  1864. "relocation_scope": "Excluded",
  1865. "silos": [
  1866. "Control"
  1867. ]
  1868. },
  1869. "sentry.NotificationSettingProvider": {
  1870. "foreign_keys": {
  1871. "team_id": {
  1872. "kind": "HybridCloudForeignKey",
  1873. "model": "sentry.Team"
  1874. },
  1875. "user": {
  1876. "kind": "FlexibleForeignKey",
  1877. "model": "sentry.User"
  1878. }
  1879. },
  1880. "model": "sentry.NotificationSettingProvider",
  1881. "relocation_scope": "Excluded",
  1882. "silos": [
  1883. "Control"
  1884. ]
  1885. },
  1886. "sentry.Option": {
  1887. "foreign_keys": {},
  1888. "model": "sentry.Option",
  1889. "relocation_scope": "Global",
  1890. "silos": [
  1891. "Region"
  1892. ]
  1893. },
  1894. "sentry.OrgAuthToken": {
  1895. "foreign_keys": {
  1896. "created_by": {
  1897. "kind": "FlexibleForeignKey",
  1898. "model": "sentry.User"
  1899. },
  1900. "organization_id": {
  1901. "kind": "HybridCloudForeignKey",
  1902. "model": "sentry.Organization"
  1903. },
  1904. "project_last_used_id": {
  1905. "kind": "HybridCloudForeignKey",
  1906. "model": "sentry.Project"
  1907. }
  1908. },
  1909. "model": "sentry.OrgAuthToken",
  1910. "relocation_scope": "Organization",
  1911. "silos": [
  1912. "Control"
  1913. ]
  1914. },
  1915. "sentry.Organization": {
  1916. "foreign_keys": {},
  1917. "model": "sentry.Organization",
  1918. "relocation_scope": "Organization",
  1919. "silos": [
  1920. "Region"
  1921. ]
  1922. },
  1923. "sentry.OrganizationAccessRequest": {
  1924. "foreign_keys": {
  1925. "member": {
  1926. "kind": "FlexibleForeignKey",
  1927. "model": "sentry.OrganizationMember"
  1928. },
  1929. "requester_id": {
  1930. "kind": "HybridCloudForeignKey",
  1931. "model": "sentry.User"
  1932. },
  1933. "team": {
  1934. "kind": "FlexibleForeignKey",
  1935. "model": "sentry.Team"
  1936. }
  1937. },
  1938. "model": "sentry.OrganizationAccessRequest",
  1939. "relocation_scope": "Organization",
  1940. "silos": [
  1941. "Region"
  1942. ]
  1943. },
  1944. "sentry.OrganizationAvatar": {
  1945. "foreign_keys": {
  1946. "file_id": {
  1947. "kind": "ImplicitForeignKey",
  1948. "model": "sentry.File"
  1949. },
  1950. "organization": {
  1951. "kind": "FlexibleForeignKey",
  1952. "model": "sentry.Organization"
  1953. }
  1954. },
  1955. "model": "sentry.OrganizationAvatar",
  1956. "relocation_scope": "Excluded",
  1957. "silos": [
  1958. "Region"
  1959. ]
  1960. },
  1961. "sentry.OrganizationIntegration": {
  1962. "foreign_keys": {
  1963. "integration": {
  1964. "kind": "FlexibleForeignKey",
  1965. "model": "sentry.Integration"
  1966. },
  1967. "organization_id": {
  1968. "kind": "HybridCloudForeignKey",
  1969. "model": "sentry.Organization"
  1970. }
  1971. },
  1972. "model": "sentry.OrganizationIntegration",
  1973. "relocation_scope": "Global",
  1974. "silos": [
  1975. "Control"
  1976. ]
  1977. },
  1978. "sentry.OrganizationMapping": {
  1979. "foreign_keys": {
  1980. "organization_id": {
  1981. "kind": "ImplicitForeignKey",
  1982. "model": "sentry.Organization"
  1983. }
  1984. },
  1985. "model": "sentry.OrganizationMapping",
  1986. "relocation_scope": "Excluded",
  1987. "silos": [
  1988. "Control"
  1989. ]
  1990. },
  1991. "sentry.OrganizationMember": {
  1992. "foreign_keys": {
  1993. "inviter_id": {
  1994. "kind": "HybridCloudForeignKey",
  1995. "model": "sentry.User"
  1996. },
  1997. "organization": {
  1998. "kind": "FlexibleForeignKey",
  1999. "model": "sentry.Organization"
  2000. },
  2001. "user_id": {
  2002. "kind": "HybridCloudForeignKey",
  2003. "model": "sentry.User"
  2004. }
  2005. },
  2006. "model": "sentry.OrganizationMember",
  2007. "relocation_scope": "Organization",
  2008. "silos": [
  2009. "Region"
  2010. ]
  2011. },
  2012. "sentry.OrganizationMemberMapping": {
  2013. "foreign_keys": {
  2014. "inviter": {
  2015. "kind": "FlexibleForeignKey",
  2016. "model": "sentry.User"
  2017. },
  2018. "organization_id": {
  2019. "kind": "HybridCloudForeignKey",
  2020. "model": "sentry.Organization"
  2021. },
  2022. "organizationmember_id": {
  2023. "kind": "ImplicitForeignKey",
  2024. "model": "sentry.OrganizationMember"
  2025. },
  2026. "user": {
  2027. "kind": "FlexibleForeignKey",
  2028. "model": "sentry.User"
  2029. }
  2030. },
  2031. "model": "sentry.OrganizationMemberMapping",
  2032. "relocation_scope": "Excluded",
  2033. "silos": [
  2034. "Control"
  2035. ]
  2036. },
  2037. "sentry.OrganizationMemberTeam": {
  2038. "foreign_keys": {
  2039. "organizationmember": {
  2040. "kind": "FlexibleForeignKey",
  2041. "model": "sentry.OrganizationMember"
  2042. },
  2043. "team": {
  2044. "kind": "FlexibleForeignKey",
  2045. "model": "sentry.Team"
  2046. }
  2047. },
  2048. "model": "sentry.OrganizationMemberTeam",
  2049. "relocation_scope": "Organization",
  2050. "silos": [
  2051. "Region"
  2052. ]
  2053. },
  2054. "sentry.OrganizationOnboardingTask": {
  2055. "foreign_keys": {
  2056. "organization": {
  2057. "kind": "FlexibleForeignKey",
  2058. "model": "sentry.Organization"
  2059. },
  2060. "project": {
  2061. "kind": "FlexibleForeignKey",
  2062. "model": "sentry.Project"
  2063. },
  2064. "user_id": {
  2065. "kind": "HybridCloudForeignKey",
  2066. "model": "sentry.User"
  2067. }
  2068. },
  2069. "model": "sentry.OrganizationOnboardingTask",
  2070. "relocation_scope": "Excluded",
  2071. "silos": [
  2072. "Region"
  2073. ]
  2074. },
  2075. "sentry.OrganizationOption": {
  2076. "foreign_keys": {
  2077. "organization": {
  2078. "kind": "FlexibleForeignKey",
  2079. "model": "sentry.Organization"
  2080. }
  2081. },
  2082. "model": "sentry.OrganizationOption",
  2083. "relocation_scope": "Organization",
  2084. "silos": [
  2085. "Region"
  2086. ]
  2087. },
  2088. "sentry.PendingIncidentSnapshot": {
  2089. "foreign_keys": {
  2090. "incident": {
  2091. "kind": "OneToOneCascadeDeletes",
  2092. "model": "sentry.Incident"
  2093. }
  2094. },
  2095. "model": "sentry.PendingIncidentSnapshot",
  2096. "relocation_scope": "Organization",
  2097. "silos": [
  2098. "Region"
  2099. ]
  2100. },
  2101. "sentry.PerfStringIndexer": {
  2102. "foreign_keys": {
  2103. "organization_id": {
  2104. "kind": "ImplicitForeignKey",
  2105. "model": "sentry.Organization"
  2106. }
  2107. },
  2108. "model": "sentry.PerfStringIndexer",
  2109. "relocation_scope": "Excluded",
  2110. "silos": [
  2111. "Region"
  2112. ]
  2113. },
  2114. "sentry.PlatformExternalIssue": {
  2115. "foreign_keys": {
  2116. "group": {
  2117. "kind": "FlexibleForeignKey",
  2118. "model": "sentry.Group"
  2119. },
  2120. "project": {
  2121. "kind": "FlexibleForeignKey",
  2122. "model": "sentry.Project"
  2123. }
  2124. },
  2125. "model": "sentry.PlatformExternalIssue",
  2126. "relocation_scope": "Excluded",
  2127. "silos": [
  2128. "Region"
  2129. ]
  2130. },
  2131. "sentry.ProcessingIssue": {
  2132. "foreign_keys": {
  2133. "project": {
  2134. "kind": "FlexibleForeignKey",
  2135. "model": "sentry.Project"
  2136. }
  2137. },
  2138. "model": "sentry.ProcessingIssue",
  2139. "relocation_scope": "Excluded",
  2140. "silos": [
  2141. "Region"
  2142. ]
  2143. },
  2144. "sentry.ProguardArtifactRelease": {
  2145. "foreign_keys": {
  2146. "organization_id": {
  2147. "kind": "ImplicitForeignKey",
  2148. "model": "sentry.Organization"
  2149. },
  2150. "project_debug_file": {
  2151. "kind": "FlexibleForeignKey",
  2152. "model": "sentry.ProjectDebugFile"
  2153. },
  2154. "project_id": {
  2155. "kind": "ImplicitForeignKey",
  2156. "model": "sentry.Project"
  2157. }
  2158. },
  2159. "model": "sentry.ProguardArtifactRelease",
  2160. "relocation_scope": "Excluded",
  2161. "silos": [
  2162. "Region"
  2163. ]
  2164. },
  2165. "sentry.Project": {
  2166. "foreign_keys": {
  2167. "organization": {
  2168. "kind": "FlexibleForeignKey",
  2169. "model": "sentry.Organization"
  2170. }
  2171. },
  2172. "model": "sentry.Project",
  2173. "relocation_scope": "Organization",
  2174. "silos": [
  2175. "Region"
  2176. ]
  2177. },
  2178. "sentry.ProjectArtifactBundle": {
  2179. "foreign_keys": {
  2180. "artifact_bundle": {
  2181. "kind": "FlexibleForeignKey",
  2182. "model": "sentry.ArtifactBundle"
  2183. },
  2184. "organization_id": {
  2185. "kind": "ImplicitForeignKey",
  2186. "model": "sentry.Organization"
  2187. },
  2188. "project_id": {
  2189. "kind": "ImplicitForeignKey",
  2190. "model": "sentry.Project"
  2191. }
  2192. },
  2193. "model": "sentry.ProjectArtifactBundle",
  2194. "relocation_scope": "Excluded",
  2195. "silos": [
  2196. "Region"
  2197. ]
  2198. },
  2199. "sentry.ProjectAvatar": {
  2200. "foreign_keys": {
  2201. "file_id": {
  2202. "kind": "ImplicitForeignKey",
  2203. "model": "sentry.File"
  2204. },
  2205. "project": {
  2206. "kind": "FlexibleForeignKey",
  2207. "model": "sentry.Project"
  2208. }
  2209. },
  2210. "model": "sentry.ProjectAvatar",
  2211. "relocation_scope": "Excluded",
  2212. "silos": [
  2213. "Region"
  2214. ]
  2215. },
  2216. "sentry.ProjectBookmark": {
  2217. "foreign_keys": {
  2218. "project": {
  2219. "kind": "FlexibleForeignKey",
  2220. "model": "sentry.Project"
  2221. },
  2222. "user_id": {
  2223. "kind": "HybridCloudForeignKey",
  2224. "model": "sentry.User"
  2225. }
  2226. },
  2227. "model": "sentry.ProjectBookmark",
  2228. "relocation_scope": "Organization",
  2229. "silos": [
  2230. "Region"
  2231. ]
  2232. },
  2233. "sentry.ProjectCodeOwners": {
  2234. "foreign_keys": {
  2235. "project": {
  2236. "kind": "FlexibleForeignKey",
  2237. "model": "sentry.Project"
  2238. },
  2239. "repository_project_path_config": {
  2240. "kind": "FlexibleForeignKey",
  2241. "model": "sentry.RepositoryProjectPathConfig"
  2242. }
  2243. },
  2244. "model": "sentry.ProjectCodeOwners",
  2245. "relocation_scope": "Excluded",
  2246. "silos": [
  2247. "Region"
  2248. ]
  2249. },
  2250. "sentry.ProjectDebugFile": {
  2251. "foreign_keys": {
  2252. "file": {
  2253. "kind": "FlexibleForeignKey",
  2254. "model": "sentry.File"
  2255. },
  2256. "project_id": {
  2257. "kind": "ImplicitForeignKey",
  2258. "model": "sentry.Project"
  2259. }
  2260. },
  2261. "model": "sentry.ProjectDebugFile",
  2262. "relocation_scope": "Excluded",
  2263. "silos": [
  2264. "Region"
  2265. ]
  2266. },
  2267. "sentry.ProjectIntegration": {
  2268. "foreign_keys": {
  2269. "integration_id": {
  2270. "kind": "HybridCloudForeignKey",
  2271. "model": "sentry.Integration"
  2272. },
  2273. "project": {
  2274. "kind": "FlexibleForeignKey",
  2275. "model": "sentry.Project"
  2276. }
  2277. },
  2278. "model": "sentry.ProjectIntegration",
  2279. "relocation_scope": "Global",
  2280. "silos": [
  2281. "Region"
  2282. ]
  2283. },
  2284. "sentry.ProjectKey": {
  2285. "foreign_keys": {
  2286. "project": {
  2287. "kind": "FlexibleForeignKey",
  2288. "model": "sentry.Project"
  2289. }
  2290. },
  2291. "model": "sentry.ProjectKey",
  2292. "relocation_scope": "Organization",
  2293. "silos": [
  2294. "Region"
  2295. ]
  2296. },
  2297. "sentry.ProjectOption": {
  2298. "foreign_keys": {
  2299. "project": {
  2300. "kind": "FlexibleForeignKey",
  2301. "model": "sentry.Project"
  2302. }
  2303. },
  2304. "model": "sentry.ProjectOption",
  2305. "relocation_scope": "Organization",
  2306. "silos": [
  2307. "Region"
  2308. ]
  2309. },
  2310. "sentry.ProjectOwnership": {
  2311. "foreign_keys": {
  2312. "project": {
  2313. "kind": "FlexibleForeignKey",
  2314. "model": "sentry.Project"
  2315. }
  2316. },
  2317. "model": "sentry.ProjectOwnership",
  2318. "relocation_scope": "Organization",
  2319. "silos": [
  2320. "Region"
  2321. ]
  2322. },
  2323. "sentry.ProjectPlatform": {
  2324. "foreign_keys": {
  2325. "project_id": {
  2326. "kind": "ImplicitForeignKey",
  2327. "model": "sentry.Project"
  2328. }
  2329. },
  2330. "model": "sentry.ProjectPlatform",
  2331. "relocation_scope": "Excluded",
  2332. "silos": [
  2333. "Region"
  2334. ]
  2335. },
  2336. "sentry.ProjectRedirect": {
  2337. "foreign_keys": {
  2338. "organization": {
  2339. "kind": "FlexibleForeignKey",
  2340. "model": "sentry.Organization"
  2341. },
  2342. "project": {
  2343. "kind": "FlexibleForeignKey",
  2344. "model": "sentry.Project"
  2345. }
  2346. },
  2347. "model": "sentry.ProjectRedirect",
  2348. "relocation_scope": "Organization",
  2349. "silos": [
  2350. "Region"
  2351. ]
  2352. },
  2353. "sentry.ProjectTeam": {
  2354. "foreign_keys": {
  2355. "project": {
  2356. "kind": "FlexibleForeignKey",
  2357. "model": "sentry.Project"
  2358. },
  2359. "team": {
  2360. "kind": "FlexibleForeignKey",
  2361. "model": "sentry.Team"
  2362. }
  2363. },
  2364. "model": "sentry.ProjectTeam",
  2365. "relocation_scope": "Organization",
  2366. "silos": [
  2367. "Region"
  2368. ]
  2369. },
  2370. "sentry.ProjectTransactionThreshold": {
  2371. "foreign_keys": {
  2372. "edited_by_id": {
  2373. "kind": "HybridCloudForeignKey",
  2374. "model": "sentry.User"
  2375. },
  2376. "organization": {
  2377. "kind": "FlexibleForeignKey",
  2378. "model": "sentry.Organization"
  2379. },
  2380. "project": {
  2381. "kind": "FlexibleForeignKey",
  2382. "model": "sentry.Project"
  2383. }
  2384. },
  2385. "model": "sentry.ProjectTransactionThreshold",
  2386. "relocation_scope": "Excluded",
  2387. "silos": [
  2388. "Region"
  2389. ]
  2390. },
  2391. "sentry.ProjectTransactionThresholdOverride": {
  2392. "foreign_keys": {
  2393. "edited_by_id": {
  2394. "kind": "HybridCloudForeignKey",
  2395. "model": "sentry.User"
  2396. },
  2397. "organization": {
  2398. "kind": "FlexibleForeignKey",
  2399. "model": "sentry.Organization"
  2400. },
  2401. "project": {
  2402. "kind": "FlexibleForeignKey",
  2403. "model": "sentry.Project"
  2404. }
  2405. },
  2406. "model": "sentry.ProjectTransactionThresholdOverride",
  2407. "relocation_scope": "Excluded",
  2408. "silos": [
  2409. "Region"
  2410. ]
  2411. },
  2412. "sentry.PromptsActivity": {
  2413. "foreign_keys": {
  2414. "organization_id": {
  2415. "kind": "ImplicitForeignKey",
  2416. "model": "sentry.Organization"
  2417. },
  2418. "project_id": {
  2419. "kind": "ImplicitForeignKey",
  2420. "model": "sentry.Project"
  2421. },
  2422. "user_id": {
  2423. "kind": "HybridCloudForeignKey",
  2424. "model": "sentry.User"
  2425. }
  2426. },
  2427. "model": "sentry.PromptsActivity",
  2428. "relocation_scope": "Excluded",
  2429. "silos": [
  2430. "Region"
  2431. ]
  2432. },
  2433. "sentry.PullRequest": {
  2434. "foreign_keys": {
  2435. "author": {
  2436. "kind": "FlexibleForeignKey",
  2437. "model": "sentry.CommitAuthor"
  2438. },
  2439. "organization_id": {
  2440. "kind": "ImplicitForeignKey",
  2441. "model": "sentry.Organization"
  2442. },
  2443. "repository_id": {
  2444. "kind": "ImplicitForeignKey",
  2445. "model": "sentry.Repository"
  2446. }
  2447. },
  2448. "model": "sentry.PullRequest",
  2449. "relocation_scope": "Excluded",
  2450. "silos": [
  2451. "Region"
  2452. ]
  2453. },
  2454. "sentry.PullRequestComment": {
  2455. "foreign_keys": {
  2456. "pull_request": {
  2457. "kind": "FlexibleForeignKey",
  2458. "model": "sentry.PullRequest"
  2459. }
  2460. },
  2461. "model": "sentry.PullRequestComment",
  2462. "relocation_scope": "Excluded",
  2463. "silos": [
  2464. "Region"
  2465. ]
  2466. },
  2467. "sentry.PullRequestCommit": {
  2468. "foreign_keys": {
  2469. "commit": {
  2470. "kind": "FlexibleForeignKey",
  2471. "model": "sentry.Commit"
  2472. },
  2473. "pull_request": {
  2474. "kind": "FlexibleForeignKey",
  2475. "model": "sentry.PullRequest"
  2476. }
  2477. },
  2478. "model": "sentry.PullRequestCommit",
  2479. "relocation_scope": "Excluded",
  2480. "silos": [
  2481. "Region"
  2482. ]
  2483. },
  2484. "sentry.QuerySubscription": {
  2485. "foreign_keys": {
  2486. "project": {
  2487. "kind": "FlexibleForeignKey",
  2488. "model": "sentry.Project"
  2489. },
  2490. "snuba_query": {
  2491. "kind": "FlexibleForeignKey",
  2492. "model": "sentry.SnubaQuery"
  2493. }
  2494. },
  2495. "model": "sentry.QuerySubscription",
  2496. "relocation_scope": "Organization",
  2497. "silos": [
  2498. "Region"
  2499. ]
  2500. },
  2501. "sentry.RawEvent": {
  2502. "foreign_keys": {
  2503. "project": {
  2504. "kind": "FlexibleForeignKey",
  2505. "model": "sentry.Project"
  2506. }
  2507. },
  2508. "model": "sentry.RawEvent",
  2509. "relocation_scope": "Excluded",
  2510. "silos": [
  2511. "Region"
  2512. ]
  2513. },
  2514. "sentry.RecentSearch": {
  2515. "foreign_keys": {
  2516. "organization": {
  2517. "kind": "FlexibleForeignKey",
  2518. "model": "sentry.Organization"
  2519. },
  2520. "user_id": {
  2521. "kind": "HybridCloudForeignKey",
  2522. "model": "sentry.User"
  2523. }
  2524. },
  2525. "model": "sentry.RecentSearch",
  2526. "relocation_scope": "Organization",
  2527. "silos": [
  2528. "Region"
  2529. ]
  2530. },
  2531. "sentry.RegionOutbox": {
  2532. "foreign_keys": {},
  2533. "model": "sentry.RegionOutbox",
  2534. "relocation_scope": "Excluded",
  2535. "silos": [
  2536. "Region"
  2537. ]
  2538. },
  2539. "sentry.RegionScheduledDeletion": {
  2540. "foreign_keys": {},
  2541. "model": "sentry.RegionScheduledDeletion",
  2542. "relocation_scope": "Excluded",
  2543. "silos": [
  2544. "Region"
  2545. ]
  2546. },
  2547. "sentry.RegionTombstone": {
  2548. "foreign_keys": {},
  2549. "model": "sentry.RegionTombstone",
  2550. "relocation_scope": "Excluded",
  2551. "silos": [
  2552. "Region"
  2553. ]
  2554. },
  2555. "sentry.Relay": {
  2556. "foreign_keys": {},
  2557. "model": "sentry.Relay",
  2558. "relocation_scope": "Global",
  2559. "silos": [
  2560. "Region"
  2561. ]
  2562. },
  2563. "sentry.RelayUsage": {
  2564. "foreign_keys": {},
  2565. "model": "sentry.RelayUsage",
  2566. "relocation_scope": "Global",
  2567. "silos": [
  2568. "Region"
  2569. ]
  2570. },
  2571. "sentry.Release": {
  2572. "foreign_keys": {
  2573. "organization": {
  2574. "kind": "FlexibleForeignKey",
  2575. "model": "sentry.Organization"
  2576. },
  2577. "owner_id": {
  2578. "kind": "HybridCloudForeignKey",
  2579. "model": "sentry.User"
  2580. },
  2581. "project_id": {
  2582. "kind": "ImplicitForeignKey",
  2583. "model": "sentry.Project"
  2584. }
  2585. },
  2586. "model": "sentry.Release",
  2587. "relocation_scope": "Excluded",
  2588. "silos": [
  2589. "Region"
  2590. ]
  2591. },
  2592. "sentry.ReleaseActivity": {
  2593. "foreign_keys": {
  2594. "release": {
  2595. "kind": "FlexibleForeignKey",
  2596. "model": "sentry.Release"
  2597. }
  2598. },
  2599. "model": "sentry.ReleaseActivity",
  2600. "relocation_scope": "Excluded",
  2601. "silos": [
  2602. "Region"
  2603. ]
  2604. },
  2605. "sentry.ReleaseArtifactBundle": {
  2606. "foreign_keys": {
  2607. "artifact_bundle": {
  2608. "kind": "FlexibleForeignKey",
  2609. "model": "sentry.ArtifactBundle"
  2610. },
  2611. "organization_id": {
  2612. "kind": "ImplicitForeignKey",
  2613. "model": "sentry.Organization"
  2614. }
  2615. },
  2616. "model": "sentry.ReleaseArtifactBundle",
  2617. "relocation_scope": "Excluded",
  2618. "silos": [
  2619. "Region"
  2620. ]
  2621. },
  2622. "sentry.ReleaseCommit": {
  2623. "foreign_keys": {
  2624. "commit": {
  2625. "kind": "FlexibleForeignKey",
  2626. "model": "sentry.Commit"
  2627. },
  2628. "organization_id": {
  2629. "kind": "ImplicitForeignKey",
  2630. "model": "sentry.Organization"
  2631. },
  2632. "project_id": {
  2633. "kind": "ImplicitForeignKey",
  2634. "model": "sentry.Project"
  2635. },
  2636. "release": {
  2637. "kind": "FlexibleForeignKey",
  2638. "model": "sentry.Release"
  2639. }
  2640. },
  2641. "model": "sentry.ReleaseCommit",
  2642. "relocation_scope": "Excluded",
  2643. "silos": [
  2644. "Region"
  2645. ]
  2646. },
  2647. "sentry.ReleaseEnvironment": {
  2648. "foreign_keys": {
  2649. "environment": {
  2650. "kind": "FlexibleForeignKey",
  2651. "model": "sentry.Environment"
  2652. },
  2653. "organization": {
  2654. "kind": "FlexibleForeignKey",
  2655. "model": "sentry.Organization"
  2656. },
  2657. "project_id": {
  2658. "kind": "ImplicitForeignKey",
  2659. "model": "sentry.Project"
  2660. },
  2661. "release": {
  2662. "kind": "FlexibleForeignKey",
  2663. "model": "sentry.Release"
  2664. }
  2665. },
  2666. "model": "sentry.ReleaseEnvironment",
  2667. "relocation_scope": "Excluded",
  2668. "silos": [
  2669. "Region"
  2670. ]
  2671. },
  2672. "sentry.ReleaseFile": {
  2673. "foreign_keys": {
  2674. "file": {
  2675. "kind": "FlexibleForeignKey",
  2676. "model": "sentry.File"
  2677. },
  2678. "organization_id": {
  2679. "kind": "ImplicitForeignKey",
  2680. "model": "sentry.Organization"
  2681. },
  2682. "project_id": {
  2683. "kind": "ImplicitForeignKey",
  2684. "model": "sentry.Project"
  2685. },
  2686. "release_id": {
  2687. "kind": "ImplicitForeignKey",
  2688. "model": "sentry.Release"
  2689. }
  2690. },
  2691. "model": "sentry.ReleaseFile",
  2692. "relocation_scope": "Excluded",
  2693. "silos": [
  2694. "Region"
  2695. ]
  2696. },
  2697. "sentry.ReleaseHeadCommit": {
  2698. "foreign_keys": {
  2699. "commit": {
  2700. "kind": "FlexibleForeignKey",
  2701. "model": "sentry.Commit"
  2702. },
  2703. "organization_id": {
  2704. "kind": "ImplicitForeignKey",
  2705. "model": "sentry.Organization"
  2706. },
  2707. "release": {
  2708. "kind": "FlexibleForeignKey",
  2709. "model": "sentry.Release"
  2710. },
  2711. "repository_id": {
  2712. "kind": "ImplicitForeignKey",
  2713. "model": "sentry.Repository"
  2714. }
  2715. },
  2716. "model": "sentry.ReleaseHeadCommit",
  2717. "relocation_scope": "Excluded",
  2718. "silos": [
  2719. "Region"
  2720. ]
  2721. },
  2722. "sentry.ReleaseProject": {
  2723. "foreign_keys": {
  2724. "project": {
  2725. "kind": "FlexibleForeignKey",
  2726. "model": "sentry.Project"
  2727. },
  2728. "release": {
  2729. "kind": "FlexibleForeignKey",
  2730. "model": "sentry.Release"
  2731. }
  2732. },
  2733. "model": "sentry.ReleaseProject",
  2734. "relocation_scope": "Excluded",
  2735. "silos": [
  2736. "Region"
  2737. ]
  2738. },
  2739. "sentry.ReleaseProjectEnvironment": {
  2740. "foreign_keys": {
  2741. "environment": {
  2742. "kind": "FlexibleForeignKey",
  2743. "model": "sentry.Environment"
  2744. },
  2745. "project": {
  2746. "kind": "FlexibleForeignKey",
  2747. "model": "sentry.Project"
  2748. },
  2749. "release": {
  2750. "kind": "FlexibleForeignKey",
  2751. "model": "sentry.Release"
  2752. }
  2753. },
  2754. "model": "sentry.ReleaseProjectEnvironment",
  2755. "relocation_scope": "Excluded",
  2756. "silos": [
  2757. "Region"
  2758. ]
  2759. },
  2760. "sentry.ReleaseThreshold": {
  2761. "foreign_keys": {
  2762. "environment": {
  2763. "kind": "FlexibleForeignKey",
  2764. "model": "sentry.Environment"
  2765. },
  2766. "project": {
  2767. "kind": "FlexibleForeignKey",
  2768. "model": "sentry.Project"
  2769. }
  2770. },
  2771. "model": "sentry.ReleaseThreshold",
  2772. "relocation_scope": "Excluded",
  2773. "silos": [
  2774. "Region"
  2775. ]
  2776. },
  2777. "sentry.Repository": {
  2778. "foreign_keys": {
  2779. "integration_id": {
  2780. "kind": "ImplicitForeignKey",
  2781. "model": "sentry.Integration"
  2782. },
  2783. "organization_id": {
  2784. "kind": "ImplicitForeignKey",
  2785. "model": "sentry.Organization"
  2786. }
  2787. },
  2788. "model": "sentry.Repository",
  2789. "relocation_scope": "Global",
  2790. "silos": [
  2791. "Region"
  2792. ]
  2793. },
  2794. "sentry.RepositoryProjectPathConfig": {
  2795. "foreign_keys": {
  2796. "integration_id": {
  2797. "kind": "ImplicitForeignKey",
  2798. "model": "sentry.Integration"
  2799. },
  2800. "organization_id": {
  2801. "kind": "ImplicitForeignKey",
  2802. "model": "sentry.Organization"
  2803. },
  2804. "organization_integration_id": {
  2805. "kind": "HybridCloudForeignKey",
  2806. "model": "sentry.OrganizationIntegration"
  2807. },
  2808. "project": {
  2809. "kind": "FlexibleForeignKey",
  2810. "model": "sentry.Project"
  2811. },
  2812. "repository": {
  2813. "kind": "FlexibleForeignKey",
  2814. "model": "sentry.Repository"
  2815. }
  2816. },
  2817. "model": "sentry.RepositoryProjectPathConfig",
  2818. "relocation_scope": "Excluded",
  2819. "silos": [
  2820. "Region"
  2821. ]
  2822. },
  2823. "sentry.ReprocessingReport": {
  2824. "foreign_keys": {
  2825. "project": {
  2826. "kind": "FlexibleForeignKey",
  2827. "model": "sentry.Project"
  2828. }
  2829. },
  2830. "model": "sentry.ReprocessingReport",
  2831. "relocation_scope": "Excluded",
  2832. "silos": [
  2833. "Region"
  2834. ]
  2835. },
  2836. "sentry.Rule": {
  2837. "foreign_keys": {
  2838. "environment_id": {
  2839. "kind": "ImplicitForeignKey",
  2840. "model": "sentry.Environment"
  2841. },
  2842. "owner": {
  2843. "kind": "FlexibleForeignKey",
  2844. "model": "sentry.Actor"
  2845. },
  2846. "project": {
  2847. "kind": "FlexibleForeignKey",
  2848. "model": "sentry.Project"
  2849. }
  2850. },
  2851. "model": "sentry.Rule",
  2852. "relocation_scope": "Organization",
  2853. "silos": [
  2854. "Region"
  2855. ]
  2856. },
  2857. "sentry.RuleActivity": {
  2858. "foreign_keys": {
  2859. "rule": {
  2860. "kind": "FlexibleForeignKey",
  2861. "model": "sentry.Rule"
  2862. },
  2863. "user_id": {
  2864. "kind": "HybridCloudForeignKey",
  2865. "model": "sentry.User"
  2866. }
  2867. },
  2868. "model": "sentry.RuleActivity",
  2869. "relocation_scope": "Organization",
  2870. "silos": [
  2871. "Region"
  2872. ]
  2873. },
  2874. "sentry.RuleFireHistory": {
  2875. "foreign_keys": {
  2876. "group": {
  2877. "kind": "FlexibleForeignKey",
  2878. "model": "sentry.Group"
  2879. },
  2880. "project": {
  2881. "kind": "FlexibleForeignKey",
  2882. "model": "sentry.Project"
  2883. },
  2884. "rule": {
  2885. "kind": "FlexibleForeignKey",
  2886. "model": "sentry.Rule"
  2887. }
  2888. },
  2889. "model": "sentry.RuleFireHistory",
  2890. "relocation_scope": "Excluded",
  2891. "silos": [
  2892. "Region"
  2893. ]
  2894. },
  2895. "sentry.RuleSnooze": {
  2896. "foreign_keys": {
  2897. "alert_rule": {
  2898. "kind": "FlexibleForeignKey",
  2899. "model": "sentry.AlertRule"
  2900. },
  2901. "owner_id": {
  2902. "kind": "HybridCloudForeignKey",
  2903. "model": "sentry.User"
  2904. },
  2905. "rule": {
  2906. "kind": "FlexibleForeignKey",
  2907. "model": "sentry.Rule"
  2908. },
  2909. "user_id": {
  2910. "kind": "HybridCloudForeignKey",
  2911. "model": "sentry.User"
  2912. }
  2913. },
  2914. "model": "sentry.RuleSnooze",
  2915. "relocation_scope": "Organization",
  2916. "silos": [
  2917. "Region"
  2918. ]
  2919. },
  2920. "sentry.SavedSearch": {
  2921. "foreign_keys": {
  2922. "organization": {
  2923. "kind": "FlexibleForeignKey",
  2924. "model": "sentry.Organization"
  2925. },
  2926. "owner_id": {
  2927. "kind": "HybridCloudForeignKey",
  2928. "model": "sentry.User"
  2929. }
  2930. },
  2931. "model": "sentry.SavedSearch",
  2932. "relocation_scope": "Organization",
  2933. "silos": [
  2934. "Region"
  2935. ]
  2936. },
  2937. "sentry.ScheduledDeletion": {
  2938. "foreign_keys": {},
  2939. "model": "sentry.ScheduledDeletion",
  2940. "relocation_scope": "Excluded",
  2941. "silos": [
  2942. "Control"
  2943. ]
  2944. },
  2945. "sentry.SentryApp": {
  2946. "foreign_keys": {
  2947. "application": {
  2948. "kind": "DefaultOneToOneField",
  2949. "model": "sentry.ApiApplication"
  2950. },
  2951. "creator_user": {
  2952. "kind": "FlexibleForeignKey",
  2953. "model": "sentry.User"
  2954. },
  2955. "owner_id": {
  2956. "kind": "HybridCloudForeignKey",
  2957. "model": "sentry.Organization"
  2958. },
  2959. "proxy_user": {
  2960. "kind": "DefaultOneToOneField",
  2961. "model": "sentry.User"
  2962. }
  2963. },
  2964. "model": "sentry.SentryApp",
  2965. "relocation_scope": "Global",
  2966. "silos": [
  2967. "Control"
  2968. ]
  2969. },
  2970. "sentry.SentryAppAvatar": {
  2971. "foreign_keys": {
  2972. "control_file_id": {
  2973. "kind": "ImplicitForeignKey",
  2974. "model": "sentry.ControlFile"
  2975. },
  2976. "file_id": {
  2977. "kind": "ImplicitForeignKey",
  2978. "model": "sentry.File"
  2979. },
  2980. "sentry_app": {
  2981. "kind": "FlexibleForeignKey",
  2982. "model": "sentry.SentryApp"
  2983. }
  2984. },
  2985. "model": "sentry.SentryAppAvatar",
  2986. "relocation_scope": "Excluded",
  2987. "silos": [
  2988. "Control"
  2989. ]
  2990. },
  2991. "sentry.SentryAppComponent": {
  2992. "foreign_keys": {
  2993. "sentry_app": {
  2994. "kind": "FlexibleForeignKey",
  2995. "model": "sentry.SentryApp"
  2996. }
  2997. },
  2998. "model": "sentry.SentryAppComponent",
  2999. "relocation_scope": "Global",
  3000. "silos": [
  3001. "Control"
  3002. ]
  3003. },
  3004. "sentry.SentryAppInstallation": {
  3005. "foreign_keys": {
  3006. "api_grant": {
  3007. "kind": "DefaultOneToOneField",
  3008. "model": "sentry.ApiGrant"
  3009. },
  3010. "api_token": {
  3011. "kind": "DefaultOneToOneField",
  3012. "model": "sentry.ApiToken"
  3013. },
  3014. "organization_id": {
  3015. "kind": "HybridCloudForeignKey",
  3016. "model": "sentry.Organization"
  3017. },
  3018. "sentry_app": {
  3019. "kind": "FlexibleForeignKey",
  3020. "model": "sentry.SentryApp"
  3021. }
  3022. },
  3023. "model": "sentry.SentryAppInstallation",
  3024. "relocation_scope": "Global",
  3025. "silos": [
  3026. "Control"
  3027. ]
  3028. },
  3029. "sentry.SentryAppInstallationForProvider": {
  3030. "foreign_keys": {
  3031. "organization_id": {
  3032. "kind": "HybridCloudForeignKey",
  3033. "model": "sentry.Organization"
  3034. },
  3035. "sentry_app_installation": {
  3036. "kind": "FlexibleForeignKey",
  3037. "model": "sentry.SentryAppInstallation"
  3038. }
  3039. },
  3040. "model": "sentry.SentryAppInstallationForProvider",
  3041. "relocation_scope": "Excluded",
  3042. "silos": [
  3043. "Control"
  3044. ]
  3045. },
  3046. "sentry.SentryAppInstallationToken": {
  3047. "foreign_keys": {
  3048. "api_token": {
  3049. "kind": "FlexibleForeignKey",
  3050. "model": "sentry.ApiToken"
  3051. },
  3052. "sentry_app_installation": {
  3053. "kind": "FlexibleForeignKey",
  3054. "model": "sentry.SentryAppInstallation"
  3055. }
  3056. },
  3057. "model": "sentry.SentryAppInstallationToken",
  3058. "relocation_scope": "Excluded",
  3059. "silos": [
  3060. "Control"
  3061. ]
  3062. },
  3063. "sentry.SentryFunction": {
  3064. "foreign_keys": {
  3065. "organization": {
  3066. "kind": "FlexibleForeignKey",
  3067. "model": "sentry.Organization"
  3068. }
  3069. },
  3070. "model": "sentry.SentryFunction",
  3071. "relocation_scope": "Excluded",
  3072. "silos": [
  3073. "Region"
  3074. ]
  3075. },
  3076. "sentry.ServiceHook": {
  3077. "foreign_keys": {
  3078. "application_id": {
  3079. "kind": "HybridCloudForeignKey",
  3080. "model": "sentry.ApiApplication"
  3081. },
  3082. "installation_id": {
  3083. "kind": "HybridCloudForeignKey",
  3084. "model": "sentry.SentryAppInstallation"
  3085. },
  3086. "organization_id": {
  3087. "kind": "ImplicitForeignKey",
  3088. "model": "sentry.Organization"
  3089. },
  3090. "project_id": {
  3091. "kind": "ImplicitForeignKey",
  3092. "model": "sentry.Project"
  3093. }
  3094. },
  3095. "model": "sentry.ServiceHook",
  3096. "relocation_scope": "Global",
  3097. "silos": [
  3098. "Region"
  3099. ]
  3100. },
  3101. "sentry.ServiceHookProject": {
  3102. "foreign_keys": {
  3103. "project_id": {
  3104. "kind": "ImplicitForeignKey",
  3105. "model": "sentry.Project"
  3106. },
  3107. "service_hook": {
  3108. "kind": "FlexibleForeignKey",
  3109. "model": "sentry.ServiceHook"
  3110. }
  3111. },
  3112. "model": "sentry.ServiceHookProject",
  3113. "relocation_scope": "Excluded",
  3114. "silos": [
  3115. "Region"
  3116. ]
  3117. },
  3118. "sentry.SnubaQuery": {
  3119. "foreign_keys": {
  3120. "environment": {
  3121. "kind": "FlexibleForeignKey",
  3122. "model": "sentry.Environment"
  3123. }
  3124. },
  3125. "model": "sentry.SnubaQuery",
  3126. "relocation_scope": "Organization",
  3127. "silos": [
  3128. "Region"
  3129. ]
  3130. },
  3131. "sentry.SnubaQueryEventType": {
  3132. "foreign_keys": {
  3133. "snuba_query": {
  3134. "kind": "FlexibleForeignKey",
  3135. "model": "sentry.SnubaQuery"
  3136. }
  3137. },
  3138. "model": "sentry.SnubaQueryEventType",
  3139. "relocation_scope": "Organization",
  3140. "silos": [
  3141. "Region"
  3142. ]
  3143. },
  3144. "sentry.StringIndexer": {
  3145. "foreign_keys": {
  3146. "organization_id": {
  3147. "kind": "ImplicitForeignKey",
  3148. "model": "sentry.Organization"
  3149. }
  3150. },
  3151. "model": "sentry.StringIndexer",
  3152. "relocation_scope": "Excluded",
  3153. "silos": [
  3154. "Region"
  3155. ]
  3156. },
  3157. "sentry.Team": {
  3158. "foreign_keys": {
  3159. "actor": {
  3160. "kind": "FlexibleForeignKey",
  3161. "model": "sentry.Actor"
  3162. },
  3163. "organization": {
  3164. "kind": "FlexibleForeignKey",
  3165. "model": "sentry.Organization"
  3166. }
  3167. },
  3168. "model": "sentry.Team",
  3169. "relocation_scope": "Organization",
  3170. "silos": [
  3171. "Region"
  3172. ]
  3173. },
  3174. "sentry.TeamAvatar": {
  3175. "foreign_keys": {
  3176. "file_id": {
  3177. "kind": "ImplicitForeignKey",
  3178. "model": "sentry.File"
  3179. },
  3180. "team": {
  3181. "kind": "FlexibleForeignKey",
  3182. "model": "sentry.Team"
  3183. }
  3184. },
  3185. "model": "sentry.TeamAvatar",
  3186. "relocation_scope": "Excluded",
  3187. "silos": [
  3188. "Region"
  3189. ]
  3190. },
  3191. "sentry.TeamKeyTransaction": {
  3192. "foreign_keys": {
  3193. "organization": {
  3194. "kind": "FlexibleForeignKey",
  3195. "model": "sentry.Organization"
  3196. },
  3197. "project_team": {
  3198. "kind": "FlexibleForeignKey",
  3199. "model": "sentry.ProjectTeam"
  3200. }
  3201. },
  3202. "model": "sentry.TeamKeyTransaction",
  3203. "relocation_scope": "Excluded",
  3204. "silos": [
  3205. "Region"
  3206. ]
  3207. },
  3208. "sentry.TimeSeriesSnapshot": {
  3209. "foreign_keys": {},
  3210. "model": "sentry.TimeSeriesSnapshot",
  3211. "relocation_scope": "Organization",
  3212. "silos": [
  3213. "Region"
  3214. ]
  3215. },
  3216. "sentry.User": {
  3217. "foreign_keys": {},
  3218. "model": "sentry.User",
  3219. "relocation_scope": "User",
  3220. "silos": [
  3221. "Control"
  3222. ]
  3223. },
  3224. "sentry.UserAvatar": {
  3225. "foreign_keys": {
  3226. "control_file_id": {
  3227. "kind": "ImplicitForeignKey",
  3228. "model": "sentry.ControlFile"
  3229. },
  3230. "file_id": {
  3231. "kind": "ImplicitForeignKey",
  3232. "model": "sentry.File"
  3233. },
  3234. "user": {
  3235. "kind": "FlexibleForeignKey",
  3236. "model": "sentry.User"
  3237. }
  3238. },
  3239. "model": "sentry.UserAvatar",
  3240. "relocation_scope": "Excluded",
  3241. "silos": [
  3242. "Control"
  3243. ]
  3244. },
  3245. "sentry.UserEmail": {
  3246. "foreign_keys": {
  3247. "user": {
  3248. "kind": "FlexibleForeignKey",
  3249. "model": "sentry.User"
  3250. }
  3251. },
  3252. "model": "sentry.UserEmail",
  3253. "relocation_scope": "User",
  3254. "silos": [
  3255. "Control"
  3256. ]
  3257. },
  3258. "sentry.UserIP": {
  3259. "foreign_keys": {
  3260. "user": {
  3261. "kind": "FlexibleForeignKey",
  3262. "model": "sentry.User"
  3263. }
  3264. },
  3265. "model": "sentry.UserIP",
  3266. "relocation_scope": "User",
  3267. "silos": [
  3268. "Control"
  3269. ]
  3270. },
  3271. "sentry.UserOption": {
  3272. "foreign_keys": {
  3273. "organization_id": {
  3274. "kind": "HybridCloudForeignKey",
  3275. "model": "sentry.Organization"
  3276. },
  3277. "project_id": {
  3278. "kind": "HybridCloudForeignKey",
  3279. "model": "sentry.Project"
  3280. },
  3281. "user": {
  3282. "kind": "FlexibleForeignKey",
  3283. "model": "sentry.User"
  3284. }
  3285. },
  3286. "model": "sentry.UserOption",
  3287. "relocation_scope": "User",
  3288. "silos": [
  3289. "Control"
  3290. ]
  3291. },
  3292. "sentry.UserPermission": {
  3293. "foreign_keys": {
  3294. "user": {
  3295. "kind": "FlexibleForeignKey",
  3296. "model": "sentry.User"
  3297. }
  3298. },
  3299. "model": "sentry.UserPermission",
  3300. "relocation_scope": "User",
  3301. "silos": [
  3302. "Control"
  3303. ]
  3304. },
  3305. "sentry.UserReport": {
  3306. "foreign_keys": {
  3307. "environment_id": {
  3308. "kind": "ImplicitForeignKey",
  3309. "model": "sentry.Environment"
  3310. },
  3311. "event_user_id": {
  3312. "kind": "ImplicitForeignKey",
  3313. "model": "sentry.EventUser"
  3314. },
  3315. "group_id": {
  3316. "kind": "ImplicitForeignKey",
  3317. "model": "sentry.Group"
  3318. },
  3319. "project_id": {
  3320. "kind": "ImplicitForeignKey",
  3321. "model": "sentry.Project"
  3322. }
  3323. },
  3324. "model": "sentry.UserReport",
  3325. "relocation_scope": "Excluded",
  3326. "silos": [
  3327. "Region"
  3328. ]
  3329. },
  3330. "sentry.UserRole": {
  3331. "foreign_keys": {},
  3332. "model": "sentry.UserRole",
  3333. "relocation_scope": "User",
  3334. "silos": [
  3335. "Control"
  3336. ]
  3337. },
  3338. "sentry.UserRoleUser": {
  3339. "foreign_keys": {
  3340. "role": {
  3341. "kind": "FlexibleForeignKey",
  3342. "model": "sentry.UserRole"
  3343. },
  3344. "user": {
  3345. "kind": "FlexibleForeignKey",
  3346. "model": "sentry.User"
  3347. }
  3348. },
  3349. "model": "sentry.UserRoleUser",
  3350. "relocation_scope": "User",
  3351. "silos": [
  3352. "Control"
  3353. ]
  3354. },
  3355. "sessions.Session": {
  3356. "foreign_keys": {},
  3357. "model": "sessions.Session",
  3358. "relocation_scope": "Excluded",
  3359. "silos": [
  3360. "Monolith"
  3361. ]
  3362. },
  3363. "sites.Site": {
  3364. "foreign_keys": {},
  3365. "model": "sites.Site",
  3366. "relocation_scope": "Excluded",
  3367. "silos": [
  3368. "Monolith"
  3369. ]
  3370. },
  3371. "social_auth.UserSocialAuth": {
  3372. "foreign_keys": {
  3373. "user": {
  3374. "kind": "DefaultForeignKey",
  3375. "model": "sentry.User"
  3376. }
  3377. },
  3378. "model": "social_auth.UserSocialAuth",
  3379. "relocation_scope": "Excluded",
  3380. "silos": [
  3381. "Control"
  3382. ]
  3383. }
  3384. }