detailed.json 75 KB

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