detailed.json 74 KB

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