detailed.json 136 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180
  1. {
  2. "feedback.feedback": {
  3. "dangling": false,
  4. "foreign_keys": {
  5. "environment": {
  6. "kind": "FlexibleForeignKey",
  7. "model": "sentry.environment",
  8. "nullable": true
  9. },
  10. "organization_id": {
  11. "kind": "ImplicitForeignKey",
  12. "model": "sentry.organization",
  13. "nullable": false
  14. },
  15. "project_id": {
  16. "kind": "ImplicitForeignKey",
  17. "model": "sentry.project",
  18. "nullable": false
  19. }
  20. },
  21. "model": "feedback.feedback",
  22. "relocation_dependencies": [],
  23. "relocation_scope": "Excluded",
  24. "silos": [
  25. "Region"
  26. ],
  27. "table_name": "feedback_feedback",
  28. "uniques": [
  29. [
  30. "feedback_id"
  31. ]
  32. ]
  33. },
  34. "hybridcloud.apikeyreplica": {
  35. "dangling": false,
  36. "foreign_keys": {
  37. "apikey_id": {
  38. "kind": "HybridCloudForeignKey",
  39. "model": "sentry.apikey",
  40. "nullable": false
  41. },
  42. "organization": {
  43. "kind": "FlexibleForeignKey",
  44. "model": "sentry.organization",
  45. "nullable": false
  46. }
  47. },
  48. "model": "hybridcloud.apikeyreplica",
  49. "relocation_dependencies": [],
  50. "relocation_scope": "Excluded",
  51. "silos": [
  52. "Region"
  53. ],
  54. "table_name": "hybridcloud_apikeyreplica",
  55. "uniques": []
  56. },
  57. "hybridcloud.apitokenreplica": {
  58. "dangling": false,
  59. "foreign_keys": {
  60. "apitoken_id": {
  61. "kind": "HybridCloudForeignKey",
  62. "model": "sentry.apitoken",
  63. "nullable": false
  64. },
  65. "application_id": {
  66. "kind": "HybridCloudForeignKey",
  67. "model": "sentry.apiapplication",
  68. "nullable": true
  69. },
  70. "organization": {
  71. "kind": "FlexibleForeignKey",
  72. "model": "sentry.organization",
  73. "nullable": true
  74. },
  75. "user_id": {
  76. "kind": "HybridCloudForeignKey",
  77. "model": "sentry.user",
  78. "nullable": false
  79. }
  80. },
  81. "model": "hybridcloud.apitokenreplica",
  82. "relocation_dependencies": [],
  83. "relocation_scope": "Excluded",
  84. "silos": [
  85. "Region"
  86. ],
  87. "table_name": "hybridcloud_apitokenreplica",
  88. "uniques": []
  89. },
  90. "hybridcloud.controlcacheversion": {
  91. "dangling": false,
  92. "foreign_keys": {},
  93. "model": "hybridcloud.controlcacheversion",
  94. "relocation_dependencies": [],
  95. "relocation_scope": "Excluded",
  96. "silos": [
  97. "Control"
  98. ],
  99. "table_name": "hybridcloud_controlcacheversion",
  100. "uniques": [
  101. [
  102. "key"
  103. ]
  104. ]
  105. },
  106. "hybridcloud.externalactorreplica": {
  107. "dangling": false,
  108. "foreign_keys": {
  109. "externalactor_id": {
  110. "kind": "ImplicitForeignKey",
  111. "model": "sentry.externalactor",
  112. "nullable": false
  113. },
  114. "integration": {
  115. "kind": "FlexibleForeignKey",
  116. "model": "sentry.integration",
  117. "nullable": false
  118. },
  119. "organization_id": {
  120. "kind": "HybridCloudForeignKey",
  121. "model": "sentry.organization",
  122. "nullable": false
  123. },
  124. "team_id": {
  125. "kind": "HybridCloudForeignKey",
  126. "model": "sentry.team",
  127. "nullable": true
  128. },
  129. "user": {
  130. "kind": "FlexibleForeignKey",
  131. "model": "sentry.user",
  132. "nullable": true
  133. }
  134. },
  135. "model": "hybridcloud.externalactorreplica",
  136. "relocation_dependencies": [],
  137. "relocation_scope": "Excluded",
  138. "silos": [
  139. "Control"
  140. ],
  141. "table_name": "hybridcloud_externalactorreplica",
  142. "uniques": [
  143. [
  144. "external_name",
  145. "organization_id",
  146. "provider",
  147. "team_id"
  148. ],
  149. [
  150. "external_name",
  151. "organization_id",
  152. "provider",
  153. "user_id"
  154. ]
  155. ]
  156. },
  157. "hybridcloud.organizationslugreservationreplica": {
  158. "dangling": false,
  159. "foreign_keys": {
  160. "organization_id": {
  161. "kind": "ImplicitForeignKey",
  162. "model": "sentry.organization",
  163. "nullable": false
  164. },
  165. "organization_slug_reservation_id": {
  166. "kind": "HybridCloudForeignKey",
  167. "model": "sentry.organizationslugreservation",
  168. "nullable": false
  169. },
  170. "user_id": {
  171. "kind": "ImplicitForeignKey",
  172. "model": "sentry.user",
  173. "nullable": true
  174. }
  175. },
  176. "model": "hybridcloud.organizationslugreservationreplica",
  177. "relocation_dependencies": [],
  178. "relocation_scope": "Excluded",
  179. "silos": [
  180. "Region"
  181. ],
  182. "table_name": "hybridcloud_organizationslugreservationreplica",
  183. "uniques": [
  184. [
  185. "organization_id",
  186. "reservation_type"
  187. ],
  188. [
  189. "organization_slug_reservation_id"
  190. ],
  191. [
  192. "slug"
  193. ]
  194. ]
  195. },
  196. "hybridcloud.orgauthtokenreplica": {
  197. "dangling": false,
  198. "foreign_keys": {
  199. "created_by_id": {
  200. "kind": "HybridCloudForeignKey",
  201. "model": "sentry.user",
  202. "nullable": true
  203. },
  204. "organization": {
  205. "kind": "FlexibleForeignKey",
  206. "model": "sentry.organization",
  207. "nullable": false
  208. },
  209. "orgauthtoken_id": {
  210. "kind": "HybridCloudForeignKey",
  211. "model": "sentry.orgauthtoken",
  212. "nullable": false
  213. }
  214. },
  215. "model": "hybridcloud.orgauthtokenreplica",
  216. "relocation_dependencies": [],
  217. "relocation_scope": "Excluded",
  218. "silos": [
  219. "Region"
  220. ],
  221. "table_name": "hybridcloud_orgauthtokenreplica",
  222. "uniques": []
  223. },
  224. "hybridcloud.regioncacheversion": {
  225. "dangling": false,
  226. "foreign_keys": {},
  227. "model": "hybridcloud.regioncacheversion",
  228. "relocation_dependencies": [],
  229. "relocation_scope": "Excluded",
  230. "silos": [
  231. "Region"
  232. ],
  233. "table_name": "hybridcloud_regioncacheversion",
  234. "uniques": [
  235. [
  236. "key"
  237. ]
  238. ]
  239. },
  240. "hybridcloud.webhookpayload": {
  241. "dangling": false,
  242. "foreign_keys": {},
  243. "model": "hybridcloud.webhookpayload",
  244. "relocation_dependencies": [],
  245. "relocation_scope": "Excluded",
  246. "silos": [
  247. "Control"
  248. ],
  249. "table_name": "hybridcloud_webhookpayload",
  250. "uniques": []
  251. },
  252. "nodestore.node": {
  253. "dangling": false,
  254. "foreign_keys": {},
  255. "model": "nodestore.node",
  256. "relocation_dependencies": [],
  257. "relocation_scope": "Excluded",
  258. "silos": [
  259. "Region"
  260. ],
  261. "table_name": "nodestore_node",
  262. "uniques": []
  263. },
  264. "replays.replayrecordingsegment": {
  265. "dangling": false,
  266. "foreign_keys": {
  267. "file_id": {
  268. "kind": "ImplicitForeignKey",
  269. "model": "sentry.file",
  270. "nullable": false
  271. },
  272. "project_id": {
  273. "kind": "ImplicitForeignKey",
  274. "model": "sentry.project",
  275. "nullable": false
  276. }
  277. },
  278. "model": "replays.replayrecordingsegment",
  279. "relocation_dependencies": [],
  280. "relocation_scope": "Excluded",
  281. "silos": [
  282. "Region"
  283. ],
  284. "table_name": "replays_replayrecordingsegment",
  285. "uniques": [
  286. [
  287. "file_id",
  288. "project_id",
  289. "replay_id"
  290. ],
  291. [
  292. "project_id",
  293. "replay_id",
  294. "segment_id"
  295. ]
  296. ]
  297. },
  298. "sentry.activity": {
  299. "dangling": false,
  300. "foreign_keys": {
  301. "group": {
  302. "kind": "FlexibleForeignKey",
  303. "model": "sentry.group",
  304. "nullable": true
  305. },
  306. "project": {
  307. "kind": "FlexibleForeignKey",
  308. "model": "sentry.project",
  309. "nullable": false
  310. },
  311. "user_id": {
  312. "kind": "HybridCloudForeignKey",
  313. "model": "sentry.user",
  314. "nullable": true
  315. }
  316. },
  317. "model": "sentry.activity",
  318. "relocation_dependencies": [],
  319. "relocation_scope": "Excluded",
  320. "silos": [
  321. "Region"
  322. ],
  323. "table_name": "sentry_activity",
  324. "uniques": []
  325. },
  326. "sentry.alertrule": {
  327. "dangling": false,
  328. "foreign_keys": {
  329. "organization": {
  330. "kind": "FlexibleForeignKey",
  331. "model": "sentry.organization",
  332. "nullable": true
  333. },
  334. "snuba_query": {
  335. "kind": "FlexibleForeignKey",
  336. "model": "sentry.snubaquery",
  337. "nullable": true
  338. },
  339. "team": {
  340. "kind": "FlexibleForeignKey",
  341. "model": "sentry.team",
  342. "nullable": true
  343. },
  344. "user_id": {
  345. "kind": "HybridCloudForeignKey",
  346. "model": "sentry.user",
  347. "nullable": true
  348. }
  349. },
  350. "model": "sentry.alertrule",
  351. "relocation_dependencies": [],
  352. "relocation_scope": "Organization",
  353. "silos": [
  354. "Region"
  355. ],
  356. "table_name": "sentry_alertrule",
  357. "uniques": [
  358. [
  359. "snuba_query"
  360. ]
  361. ]
  362. },
  363. "sentry.alertruleactivationcondition": {
  364. "dangling": false,
  365. "foreign_keys": {
  366. "alert_rule": {
  367. "kind": "FlexibleForeignKey",
  368. "model": "sentry.alertrule",
  369. "nullable": false
  370. }
  371. },
  372. "model": "sentry.alertruleactivationcondition",
  373. "relocation_dependencies": [],
  374. "relocation_scope": "Organization",
  375. "silos": [
  376. "Region"
  377. ],
  378. "table_name": "sentry_alertruleactivationcondition",
  379. "uniques": [
  380. [
  381. "alert_rule",
  382. "label"
  383. ]
  384. ]
  385. },
  386. "sentry.alertruleactivations": {
  387. "dangling": false,
  388. "foreign_keys": {
  389. "alert_rule": {
  390. "kind": "FlexibleForeignKey",
  391. "model": "sentry.alertrule",
  392. "nullable": false
  393. },
  394. "query_subscription": {
  395. "kind": "FlexibleForeignKey",
  396. "model": "sentry.querysubscription",
  397. "nullable": true
  398. }
  399. },
  400. "model": "sentry.alertruleactivations",
  401. "relocation_dependencies": [],
  402. "relocation_scope": "Excluded",
  403. "silos": [
  404. "Region"
  405. ],
  406. "table_name": "sentry_alertruleactivations",
  407. "uniques": []
  408. },
  409. "sentry.alertruleactivity": {
  410. "dangling": false,
  411. "foreign_keys": {
  412. "alert_rule": {
  413. "kind": "FlexibleForeignKey",
  414. "model": "sentry.alertrule",
  415. "nullable": false
  416. },
  417. "previous_alert_rule": {
  418. "kind": "FlexibleForeignKey",
  419. "model": "sentry.alertrule",
  420. "nullable": true
  421. },
  422. "user_id": {
  423. "kind": "HybridCloudForeignKey",
  424. "model": "sentry.user",
  425. "nullable": true
  426. }
  427. },
  428. "model": "sentry.alertruleactivity",
  429. "relocation_dependencies": [],
  430. "relocation_scope": "Organization",
  431. "silos": [
  432. "Region"
  433. ],
  434. "table_name": "sentry_alertruleactivity",
  435. "uniques": []
  436. },
  437. "sentry.alertruleexcludedprojects": {
  438. "dangling": false,
  439. "foreign_keys": {
  440. "alert_rule": {
  441. "kind": "FlexibleForeignKey",
  442. "model": "sentry.alertrule",
  443. "nullable": false
  444. },
  445. "project": {
  446. "kind": "FlexibleForeignKey",
  447. "model": "sentry.project",
  448. "nullable": false
  449. }
  450. },
  451. "model": "sentry.alertruleexcludedprojects",
  452. "relocation_dependencies": [],
  453. "relocation_scope": "Organization",
  454. "silos": [
  455. "Region"
  456. ],
  457. "table_name": "sentry_alertruleexcludedprojects",
  458. "uniques": [
  459. [
  460. "alert_rule",
  461. "project"
  462. ]
  463. ]
  464. },
  465. "sentry.alertruleprojects": {
  466. "dangling": false,
  467. "foreign_keys": {
  468. "alert_rule": {
  469. "kind": "FlexibleForeignKey",
  470. "model": "sentry.alertrule",
  471. "nullable": false
  472. },
  473. "project": {
  474. "kind": "FlexibleForeignKey",
  475. "model": "sentry.project",
  476. "nullable": false
  477. }
  478. },
  479. "model": "sentry.alertruleprojects",
  480. "relocation_dependencies": [],
  481. "relocation_scope": "Organization",
  482. "silos": [
  483. "Region"
  484. ],
  485. "table_name": "sentry_alertruleprojects",
  486. "uniques": [
  487. [
  488. "alert_rule",
  489. "project"
  490. ]
  491. ]
  492. },
  493. "sentry.alertruletrigger": {
  494. "dangling": false,
  495. "foreign_keys": {
  496. "alert_rule": {
  497. "kind": "FlexibleForeignKey",
  498. "model": "sentry.alertrule",
  499. "nullable": false
  500. }
  501. },
  502. "model": "sentry.alertruletrigger",
  503. "relocation_dependencies": [],
  504. "relocation_scope": "Organization",
  505. "silos": [
  506. "Region"
  507. ],
  508. "table_name": "sentry_alertruletrigger",
  509. "uniques": [
  510. [
  511. "alert_rule",
  512. "label"
  513. ]
  514. ]
  515. },
  516. "sentry.alertruletriggeraction": {
  517. "dangling": false,
  518. "foreign_keys": {
  519. "alert_rule_trigger": {
  520. "kind": "FlexibleForeignKey",
  521. "model": "sentry.alertruletrigger",
  522. "nullable": false
  523. },
  524. "integration_id": {
  525. "kind": "HybridCloudForeignKey",
  526. "model": "sentry.integration",
  527. "nullable": true
  528. },
  529. "sentry_app_id": {
  530. "kind": "HybridCloudForeignKey",
  531. "model": "sentry.sentryapp",
  532. "nullable": true
  533. }
  534. },
  535. "model": "sentry.alertruletriggeraction",
  536. "relocation_dependencies": [],
  537. "relocation_scope": "Global",
  538. "silos": [
  539. "Region"
  540. ],
  541. "table_name": "sentry_alertruletriggeraction",
  542. "uniques": []
  543. },
  544. "sentry.alertruletriggerexclusion": {
  545. "dangling": false,
  546. "foreign_keys": {
  547. "alert_rule_trigger": {
  548. "kind": "FlexibleForeignKey",
  549. "model": "sentry.alertruletrigger",
  550. "nullable": false
  551. },
  552. "query_subscription": {
  553. "kind": "FlexibleForeignKey",
  554. "model": "sentry.querysubscription",
  555. "nullable": false
  556. }
  557. },
  558. "model": "sentry.alertruletriggerexclusion",
  559. "relocation_dependencies": [],
  560. "relocation_scope": "Organization",
  561. "silos": [
  562. "Region"
  563. ],
  564. "table_name": "sentry_alertruletriggerexclusion",
  565. "uniques": [
  566. [
  567. "alert_rule_trigger",
  568. "query_subscription"
  569. ]
  570. ]
  571. },
  572. "sentry.apiapplication": {
  573. "dangling": false,
  574. "foreign_keys": {
  575. "owner": {
  576. "kind": "FlexibleForeignKey",
  577. "model": "sentry.user",
  578. "nullable": true
  579. }
  580. },
  581. "model": "sentry.apiapplication",
  582. "relocation_dependencies": [],
  583. "relocation_scope": "Global",
  584. "silos": [
  585. "Control"
  586. ],
  587. "table_name": "sentry_apiapplication",
  588. "uniques": [
  589. [
  590. "client_id"
  591. ]
  592. ]
  593. },
  594. "sentry.apiauthorization": {
  595. "dangling": false,
  596. "foreign_keys": {
  597. "application": {
  598. "kind": "FlexibleForeignKey",
  599. "model": "sentry.apiapplication",
  600. "nullable": true
  601. },
  602. "user": {
  603. "kind": "FlexibleForeignKey",
  604. "model": "sentry.user",
  605. "nullable": false
  606. }
  607. },
  608. "model": "sentry.apiauthorization",
  609. "relocation_dependencies": [],
  610. "relocation_scope": [
  611. "Config",
  612. "Global"
  613. ],
  614. "silos": [
  615. "Control"
  616. ],
  617. "table_name": "sentry_apiauthorization",
  618. "uniques": [
  619. [
  620. "application",
  621. "user"
  622. ]
  623. ]
  624. },
  625. "sentry.apigrant": {
  626. "dangling": false,
  627. "foreign_keys": {
  628. "application": {
  629. "kind": "FlexibleForeignKey",
  630. "model": "sentry.apiapplication",
  631. "nullable": false
  632. },
  633. "user": {
  634. "kind": "FlexibleForeignKey",
  635. "model": "sentry.user",
  636. "nullable": false
  637. }
  638. },
  639. "model": "sentry.apigrant",
  640. "relocation_dependencies": [],
  641. "relocation_scope": "Global",
  642. "silos": [
  643. "Control"
  644. ],
  645. "table_name": "sentry_apigrant",
  646. "uniques": []
  647. },
  648. "sentry.apikey": {
  649. "dangling": false,
  650. "foreign_keys": {
  651. "organization_id": {
  652. "kind": "HybridCloudForeignKey",
  653. "model": "sentry.organization",
  654. "nullable": false
  655. }
  656. },
  657. "model": "sentry.apikey",
  658. "relocation_dependencies": [],
  659. "relocation_scope": "Global",
  660. "silos": [
  661. "Control"
  662. ],
  663. "table_name": "sentry_apikey",
  664. "uniques": [
  665. [
  666. "key"
  667. ]
  668. ]
  669. },
  670. "sentry.apitoken": {
  671. "dangling": false,
  672. "foreign_keys": {
  673. "application": {
  674. "kind": "FlexibleForeignKey",
  675. "model": "sentry.apiapplication",
  676. "nullable": true
  677. },
  678. "user": {
  679. "kind": "FlexibleForeignKey",
  680. "model": "sentry.user",
  681. "nullable": false
  682. }
  683. },
  684. "model": "sentry.apitoken",
  685. "relocation_dependencies": [],
  686. "relocation_scope": [
  687. "Config",
  688. "Global"
  689. ],
  690. "silos": [
  691. "Control"
  692. ],
  693. "table_name": "sentry_apitoken",
  694. "uniques": [
  695. [
  696. "hashed_refresh_token"
  697. ],
  698. [
  699. "hashed_token"
  700. ],
  701. [
  702. "refresh_token"
  703. ],
  704. [
  705. "token"
  706. ]
  707. ]
  708. },
  709. "sentry.appconnectbuild": {
  710. "dangling": false,
  711. "foreign_keys": {
  712. "project": {
  713. "kind": "FlexibleForeignKey",
  714. "model": "sentry.project",
  715. "nullable": false
  716. }
  717. },
  718. "model": "sentry.appconnectbuild",
  719. "relocation_dependencies": [],
  720. "relocation_scope": "Excluded",
  721. "silos": [
  722. "Region"
  723. ],
  724. "table_name": "sentry_appconnectbuild",
  725. "uniques": []
  726. },
  727. "sentry.artifactbundle": {
  728. "dangling": false,
  729. "foreign_keys": {
  730. "file": {
  731. "kind": "FlexibleForeignKey",
  732. "model": "sentry.file",
  733. "nullable": false
  734. },
  735. "organization_id": {
  736. "kind": "ImplicitForeignKey",
  737. "model": "sentry.organization",
  738. "nullable": false
  739. }
  740. },
  741. "model": "sentry.artifactbundle",
  742. "relocation_dependencies": [],
  743. "relocation_scope": "Excluded",
  744. "silos": [
  745. "Region"
  746. ],
  747. "table_name": "sentry_artifactbundle",
  748. "uniques": []
  749. },
  750. "sentry.artifactbundleindex": {
  751. "dangling": false,
  752. "foreign_keys": {
  753. "artifact_bundle": {
  754. "kind": "FlexibleForeignKey",
  755. "model": "sentry.artifactbundle",
  756. "nullable": false
  757. },
  758. "organization_id": {
  759. "kind": "ImplicitForeignKey",
  760. "model": "sentry.organization",
  761. "nullable": false
  762. }
  763. },
  764. "model": "sentry.artifactbundleindex",
  765. "relocation_dependencies": [],
  766. "relocation_scope": "Excluded",
  767. "silos": [
  768. "Region"
  769. ],
  770. "table_name": "sentry_artifactbundleindex",
  771. "uniques": []
  772. },
  773. "sentry.assistantactivity": {
  774. "dangling": false,
  775. "foreign_keys": {
  776. "user": {
  777. "kind": "FlexibleForeignKey",
  778. "model": "sentry.user",
  779. "nullable": false
  780. }
  781. },
  782. "model": "sentry.assistantactivity",
  783. "relocation_dependencies": [],
  784. "relocation_scope": "Excluded",
  785. "silos": [
  786. "Control"
  787. ],
  788. "table_name": "sentry_assistant_activity",
  789. "uniques": [
  790. [
  791. "guide_id",
  792. "user"
  793. ]
  794. ]
  795. },
  796. "sentry.auditlogentry": {
  797. "dangling": false,
  798. "foreign_keys": {
  799. "actor": {
  800. "kind": "FlexibleForeignKey",
  801. "model": "sentry.user",
  802. "nullable": true
  803. },
  804. "actor_key": {
  805. "kind": "FlexibleForeignKey",
  806. "model": "sentry.apikey",
  807. "nullable": true
  808. },
  809. "organization_id": {
  810. "kind": "HybridCloudForeignKey",
  811. "model": "sentry.organization",
  812. "nullable": false
  813. },
  814. "target_user": {
  815. "kind": "FlexibleForeignKey",
  816. "model": "sentry.user",
  817. "nullable": true
  818. }
  819. },
  820. "model": "sentry.auditlogentry",
  821. "relocation_dependencies": [],
  822. "relocation_scope": "Excluded",
  823. "silos": [
  824. "Control"
  825. ],
  826. "table_name": "sentry_auditlogentry",
  827. "uniques": []
  828. },
  829. "sentry.authenticator": {
  830. "dangling": false,
  831. "foreign_keys": {
  832. "user": {
  833. "kind": "FlexibleForeignKey",
  834. "model": "sentry.user",
  835. "nullable": false
  836. }
  837. },
  838. "model": "sentry.authenticator",
  839. "relocation_dependencies": [],
  840. "relocation_scope": "Global",
  841. "silos": [
  842. "Control"
  843. ],
  844. "table_name": "auth_authenticator",
  845. "uniques": [
  846. [
  847. "type",
  848. "user"
  849. ]
  850. ]
  851. },
  852. "sentry.authidentity": {
  853. "dangling": false,
  854. "foreign_keys": {
  855. "auth_provider": {
  856. "kind": "FlexibleForeignKey",
  857. "model": "sentry.authprovider",
  858. "nullable": false
  859. },
  860. "user": {
  861. "kind": "FlexibleForeignKey",
  862. "model": "sentry.user",
  863. "nullable": false
  864. }
  865. },
  866. "model": "sentry.authidentity",
  867. "relocation_dependencies": [],
  868. "relocation_scope": "Global",
  869. "silos": [
  870. "Control"
  871. ],
  872. "table_name": "sentry_authidentity",
  873. "uniques": [
  874. [
  875. "auth_provider",
  876. "ident"
  877. ],
  878. [
  879. "auth_provider",
  880. "user"
  881. ]
  882. ]
  883. },
  884. "sentry.authidentityreplica": {
  885. "dangling": false,
  886. "foreign_keys": {
  887. "auth_identity_id": {
  888. "kind": "HybridCloudForeignKey",
  889. "model": "sentry.authidentity",
  890. "nullable": false
  891. },
  892. "auth_provider_id": {
  893. "kind": "HybridCloudForeignKey",
  894. "model": "sentry.authprovider",
  895. "nullable": false
  896. },
  897. "user_id": {
  898. "kind": "HybridCloudForeignKey",
  899. "model": "sentry.user",
  900. "nullable": false
  901. }
  902. },
  903. "model": "sentry.authidentityreplica",
  904. "relocation_dependencies": [],
  905. "relocation_scope": "Excluded",
  906. "silos": [
  907. "Region"
  908. ],
  909. "table_name": "sentry_authidentityreplica",
  910. "uniques": [
  911. [
  912. "auth_identity_id"
  913. ],
  914. [
  915. "auth_provider_id",
  916. "ident"
  917. ],
  918. [
  919. "auth_provider_id",
  920. "user_id"
  921. ]
  922. ]
  923. },
  924. "sentry.authprovider": {
  925. "dangling": false,
  926. "foreign_keys": {
  927. "organization_id": {
  928. "kind": "HybridCloudForeignKey",
  929. "model": "sentry.organization",
  930. "nullable": false
  931. }
  932. },
  933. "model": "sentry.authprovider",
  934. "relocation_dependencies": [],
  935. "relocation_scope": "Global",
  936. "silos": [
  937. "Control"
  938. ],
  939. "table_name": "sentry_authprovider",
  940. "uniques": [
  941. [
  942. "organization_id"
  943. ]
  944. ]
  945. },
  946. "sentry.authproviderdefaultteams": {
  947. "dangling": false,
  948. "foreign_keys": {
  949. "authprovider_id": {
  950. "kind": "ImplicitForeignKey",
  951. "model": "sentry.authprovider",
  952. "nullable": false
  953. },
  954. "team_id": {
  955. "kind": "ImplicitForeignKey",
  956. "model": "sentry.team",
  957. "nullable": false
  958. }
  959. },
  960. "model": "sentry.authproviderdefaultteams",
  961. "relocation_dependencies": [],
  962. "relocation_scope": "Excluded",
  963. "silos": [
  964. "Control"
  965. ],
  966. "table_name": "sentry_authprovider_default_teams",
  967. "uniques": []
  968. },
  969. "sentry.authproviderreplica": {
  970. "dangling": false,
  971. "foreign_keys": {
  972. "auth_provider_id": {
  973. "kind": "HybridCloudForeignKey",
  974. "model": "sentry.authprovider",
  975. "nullable": false
  976. },
  977. "organization": {
  978. "kind": "FlexibleForeignKey",
  979. "model": "sentry.organization",
  980. "nullable": false
  981. }
  982. },
  983. "model": "sentry.authproviderreplica",
  984. "relocation_dependencies": [],
  985. "relocation_scope": "Excluded",
  986. "silos": [
  987. "Region"
  988. ],
  989. "table_name": "sentry_authproviderreplica",
  990. "uniques": [
  991. [
  992. "auth_provider_id"
  993. ],
  994. [
  995. "organization"
  996. ]
  997. ]
  998. },
  999. "sentry.broadcast": {
  1000. "dangling": false,
  1001. "foreign_keys": {},
  1002. "model": "sentry.broadcast",
  1003. "relocation_dependencies": [],
  1004. "relocation_scope": "Excluded",
  1005. "silos": [
  1006. "Control"
  1007. ],
  1008. "table_name": "sentry_broadcast",
  1009. "uniques": []
  1010. },
  1011. "sentry.broadcastseen": {
  1012. "dangling": false,
  1013. "foreign_keys": {
  1014. "broadcast": {
  1015. "kind": "FlexibleForeignKey",
  1016. "model": "sentry.broadcast",
  1017. "nullable": false
  1018. },
  1019. "user": {
  1020. "kind": "FlexibleForeignKey",
  1021. "model": "sentry.user",
  1022. "nullable": false
  1023. }
  1024. },
  1025. "model": "sentry.broadcastseen",
  1026. "relocation_dependencies": [],
  1027. "relocation_scope": "Excluded",
  1028. "silos": [
  1029. "Control"
  1030. ],
  1031. "table_name": "sentry_broadcastseen",
  1032. "uniques": [
  1033. [
  1034. "broadcast",
  1035. "user"
  1036. ]
  1037. ]
  1038. },
  1039. "sentry.commit": {
  1040. "dangling": false,
  1041. "foreign_keys": {
  1042. "author": {
  1043. "kind": "FlexibleForeignKey",
  1044. "model": "sentry.commitauthor",
  1045. "nullable": true
  1046. },
  1047. "organization_id": {
  1048. "kind": "ImplicitForeignKey",
  1049. "model": "sentry.organization",
  1050. "nullable": false
  1051. },
  1052. "repository_id": {
  1053. "kind": "ImplicitForeignKey",
  1054. "model": "sentry.repository",
  1055. "nullable": false
  1056. }
  1057. },
  1058. "model": "sentry.commit",
  1059. "relocation_dependencies": [],
  1060. "relocation_scope": "Excluded",
  1061. "silos": [
  1062. "Region"
  1063. ],
  1064. "table_name": "sentry_commit",
  1065. "uniques": [
  1066. [
  1067. "key",
  1068. "repository_id"
  1069. ]
  1070. ]
  1071. },
  1072. "sentry.commitauthor": {
  1073. "dangling": false,
  1074. "foreign_keys": {
  1075. "organization_id": {
  1076. "kind": "ImplicitForeignKey",
  1077. "model": "sentry.organization",
  1078. "nullable": false
  1079. }
  1080. },
  1081. "model": "sentry.commitauthor",
  1082. "relocation_dependencies": [],
  1083. "relocation_scope": "Excluded",
  1084. "silos": [
  1085. "Region"
  1086. ],
  1087. "table_name": "sentry_commitauthor",
  1088. "uniques": [
  1089. [
  1090. "email",
  1091. "organization_id"
  1092. ],
  1093. [
  1094. "external_id",
  1095. "organization_id"
  1096. ]
  1097. ]
  1098. },
  1099. "sentry.commitfilechange": {
  1100. "dangling": false,
  1101. "foreign_keys": {
  1102. "commit": {
  1103. "kind": "FlexibleForeignKey",
  1104. "model": "sentry.commit",
  1105. "nullable": false
  1106. },
  1107. "organization_id": {
  1108. "kind": "ImplicitForeignKey",
  1109. "model": "sentry.organization",
  1110. "nullable": false
  1111. }
  1112. },
  1113. "model": "sentry.commitfilechange",
  1114. "relocation_dependencies": [],
  1115. "relocation_scope": "Excluded",
  1116. "silos": [
  1117. "Region"
  1118. ],
  1119. "table_name": "sentry_commitfilechange",
  1120. "uniques": [
  1121. [
  1122. "commit",
  1123. "filename"
  1124. ]
  1125. ]
  1126. },
  1127. "sentry.controlfile": {
  1128. "dangling": false,
  1129. "foreign_keys": {},
  1130. "model": "sentry.controlfile",
  1131. "relocation_dependencies": [],
  1132. "relocation_scope": "Excluded",
  1133. "silos": [
  1134. "Control"
  1135. ],
  1136. "table_name": "sentry_controlfile",
  1137. "uniques": []
  1138. },
  1139. "sentry.controlfileblob": {
  1140. "dangling": false,
  1141. "foreign_keys": {},
  1142. "model": "sentry.controlfileblob",
  1143. "relocation_dependencies": [],
  1144. "relocation_scope": "Excluded",
  1145. "silos": [
  1146. "Control"
  1147. ],
  1148. "table_name": "sentry_controlfileblob",
  1149. "uniques": [
  1150. [
  1151. "checksum"
  1152. ]
  1153. ]
  1154. },
  1155. "sentry.controlfileblobindex": {
  1156. "dangling": false,
  1157. "foreign_keys": {
  1158. "blob": {
  1159. "kind": "FlexibleForeignKey",
  1160. "model": "sentry.controlfileblob",
  1161. "nullable": false
  1162. },
  1163. "file": {
  1164. "kind": "FlexibleForeignKey",
  1165. "model": "sentry.controlfile",
  1166. "nullable": false
  1167. }
  1168. },
  1169. "model": "sentry.controlfileblobindex",
  1170. "relocation_dependencies": [],
  1171. "relocation_scope": "Excluded",
  1172. "silos": [
  1173. "Control"
  1174. ],
  1175. "table_name": "sentry_controlfileblobindex",
  1176. "uniques": [
  1177. [
  1178. "blob",
  1179. "file",
  1180. "offset"
  1181. ]
  1182. ]
  1183. },
  1184. "sentry.controlfileblobowner": {
  1185. "dangling": false,
  1186. "foreign_keys": {
  1187. "blob": {
  1188. "kind": "FlexibleForeignKey",
  1189. "model": "sentry.controlfileblob",
  1190. "nullable": false
  1191. },
  1192. "organization_id": {
  1193. "kind": "ImplicitForeignKey",
  1194. "model": "sentry.organization",
  1195. "nullable": false
  1196. }
  1197. },
  1198. "model": "sentry.controlfileblobowner",
  1199. "relocation_dependencies": [],
  1200. "relocation_scope": "Excluded",
  1201. "silos": [
  1202. "Control"
  1203. ],
  1204. "table_name": "sentry_controlfileblobowner",
  1205. "uniques": [
  1206. [
  1207. "blob",
  1208. "organization_id"
  1209. ]
  1210. ]
  1211. },
  1212. "sentry.controlimportchunk": {
  1213. "dangling": false,
  1214. "foreign_keys": {},
  1215. "model": "sentry.controlimportchunk",
  1216. "relocation_dependencies": [],
  1217. "relocation_scope": "Excluded",
  1218. "silos": [
  1219. "Control"
  1220. ],
  1221. "table_name": "sentry_controlimportchunk",
  1222. "uniques": [
  1223. [
  1224. "import_uuid",
  1225. "min_ordinal",
  1226. "model"
  1227. ]
  1228. ]
  1229. },
  1230. "sentry.controlimportchunkreplica": {
  1231. "dangling": false,
  1232. "foreign_keys": {},
  1233. "model": "sentry.controlimportchunkreplica",
  1234. "relocation_dependencies": [],
  1235. "relocation_scope": "Excluded",
  1236. "silos": [
  1237. "Region"
  1238. ],
  1239. "table_name": "sentry_controlimportchunkreplica",
  1240. "uniques": [
  1241. [
  1242. "import_uuid",
  1243. "min_ordinal",
  1244. "model"
  1245. ]
  1246. ]
  1247. },
  1248. "sentry.controloption": {
  1249. "dangling": false,
  1250. "foreign_keys": {},
  1251. "model": "sentry.controloption",
  1252. "relocation_dependencies": [],
  1253. "relocation_scope": "Config",
  1254. "silos": [
  1255. "Control"
  1256. ],
  1257. "table_name": "sentry_controloption",
  1258. "uniques": [
  1259. [
  1260. "key"
  1261. ]
  1262. ]
  1263. },
  1264. "sentry.controloutbox": {
  1265. "dangling": false,
  1266. "foreign_keys": {},
  1267. "model": "sentry.controloutbox",
  1268. "relocation_dependencies": [],
  1269. "relocation_scope": "Excluded",
  1270. "silos": [
  1271. "Control"
  1272. ],
  1273. "table_name": "sentry_controloutbox",
  1274. "uniques": []
  1275. },
  1276. "sentry.controltombstone": {
  1277. "dangling": false,
  1278. "foreign_keys": {},
  1279. "model": "sentry.controltombstone",
  1280. "relocation_dependencies": [],
  1281. "relocation_scope": "Excluded",
  1282. "silos": [
  1283. "Control"
  1284. ],
  1285. "table_name": "sentry_controltombstone",
  1286. "uniques": []
  1287. },
  1288. "sentry.counter": {
  1289. "dangling": false,
  1290. "foreign_keys": {
  1291. "project": {
  1292. "kind": "FlexibleForeignKey",
  1293. "model": "sentry.project",
  1294. "nullable": false
  1295. }
  1296. },
  1297. "model": "sentry.counter",
  1298. "relocation_dependencies": [],
  1299. "relocation_scope": "Organization",
  1300. "silos": [
  1301. "Region"
  1302. ],
  1303. "table_name": "sentry_projectcounter",
  1304. "uniques": [
  1305. [
  1306. "project"
  1307. ]
  1308. ]
  1309. },
  1310. "sentry.customdynamicsamplingrule": {
  1311. "dangling": false,
  1312. "foreign_keys": {
  1313. "created_by_id": {
  1314. "kind": "HybridCloudForeignKey",
  1315. "model": "sentry.user",
  1316. "nullable": true
  1317. },
  1318. "organization": {
  1319. "kind": "FlexibleForeignKey",
  1320. "model": "sentry.organization",
  1321. "nullable": false
  1322. }
  1323. },
  1324. "model": "sentry.customdynamicsamplingrule",
  1325. "relocation_dependencies": [],
  1326. "relocation_scope": "Organization",
  1327. "silos": [
  1328. "Region"
  1329. ],
  1330. "table_name": "sentry_customdynamicsamplingrule",
  1331. "uniques": []
  1332. },
  1333. "sentry.customdynamicsamplingruleproject": {
  1334. "dangling": false,
  1335. "foreign_keys": {
  1336. "custom_dynamic_sampling_rule": {
  1337. "kind": "FlexibleForeignKey",
  1338. "model": "sentry.customdynamicsamplingrule",
  1339. "nullable": false
  1340. },
  1341. "project": {
  1342. "kind": "FlexibleForeignKey",
  1343. "model": "sentry.project",
  1344. "nullable": false
  1345. }
  1346. },
  1347. "model": "sentry.customdynamicsamplingruleproject",
  1348. "relocation_dependencies": [],
  1349. "relocation_scope": "Organization",
  1350. "silos": [
  1351. "Region"
  1352. ],
  1353. "table_name": "sentry_customdynamicsamplingruleproject",
  1354. "uniques": [
  1355. [
  1356. "custom_dynamic_sampling_rule",
  1357. "project"
  1358. ]
  1359. ]
  1360. },
  1361. "sentry.dashboard": {
  1362. "dangling": false,
  1363. "foreign_keys": {
  1364. "created_by_id": {
  1365. "kind": "HybridCloudForeignKey",
  1366. "model": "sentry.user",
  1367. "nullable": false
  1368. },
  1369. "organization": {
  1370. "kind": "FlexibleForeignKey",
  1371. "model": "sentry.organization",
  1372. "nullable": false
  1373. }
  1374. },
  1375. "model": "sentry.dashboard",
  1376. "relocation_dependencies": [],
  1377. "relocation_scope": "Organization",
  1378. "silos": [
  1379. "Region"
  1380. ],
  1381. "table_name": "sentry_dashboard",
  1382. "uniques": [
  1383. [
  1384. "organization",
  1385. "title"
  1386. ]
  1387. ]
  1388. },
  1389. "sentry.dashboardproject": {
  1390. "dangling": false,
  1391. "foreign_keys": {
  1392. "dashboard": {
  1393. "kind": "FlexibleForeignKey",
  1394. "model": "sentry.dashboard",
  1395. "nullable": false
  1396. },
  1397. "project": {
  1398. "kind": "FlexibleForeignKey",
  1399. "model": "sentry.project",
  1400. "nullable": false
  1401. }
  1402. },
  1403. "model": "sentry.dashboardproject",
  1404. "relocation_dependencies": [],
  1405. "relocation_scope": "Excluded",
  1406. "silos": [
  1407. "Region"
  1408. ],
  1409. "table_name": "sentry_dashboardproject",
  1410. "uniques": [
  1411. [
  1412. "dashboard",
  1413. "project"
  1414. ]
  1415. ]
  1416. },
  1417. "sentry.dashboardtombstone": {
  1418. "dangling": false,
  1419. "foreign_keys": {
  1420. "organization": {
  1421. "kind": "FlexibleForeignKey",
  1422. "model": "sentry.organization",
  1423. "nullable": false
  1424. }
  1425. },
  1426. "model": "sentry.dashboardtombstone",
  1427. "relocation_dependencies": [],
  1428. "relocation_scope": "Organization",
  1429. "silos": [
  1430. "Region"
  1431. ],
  1432. "table_name": "sentry_dashboardtombstone",
  1433. "uniques": [
  1434. [
  1435. "organization",
  1436. "slug"
  1437. ]
  1438. ]
  1439. },
  1440. "sentry.dashboardwidget": {
  1441. "dangling": false,
  1442. "foreign_keys": {
  1443. "dashboard": {
  1444. "kind": "FlexibleForeignKey",
  1445. "model": "sentry.dashboard",
  1446. "nullable": false
  1447. }
  1448. },
  1449. "model": "sentry.dashboardwidget",
  1450. "relocation_dependencies": [],
  1451. "relocation_scope": "Organization",
  1452. "silos": [
  1453. "Region"
  1454. ],
  1455. "table_name": "sentry_dashboardwidget",
  1456. "uniques": [
  1457. [
  1458. "dashboard",
  1459. "order"
  1460. ]
  1461. ]
  1462. },
  1463. "sentry.dashboardwidgetquery": {
  1464. "dangling": false,
  1465. "foreign_keys": {
  1466. "widget": {
  1467. "kind": "FlexibleForeignKey",
  1468. "model": "sentry.dashboardwidget",
  1469. "nullable": false
  1470. }
  1471. },
  1472. "model": "sentry.dashboardwidgetquery",
  1473. "relocation_dependencies": [],
  1474. "relocation_scope": "Organization",
  1475. "silos": [
  1476. "Region"
  1477. ],
  1478. "table_name": "sentry_dashboardwidgetquery",
  1479. "uniques": [
  1480. [
  1481. "order",
  1482. "widget"
  1483. ]
  1484. ]
  1485. },
  1486. "sentry.dashboardwidgetqueryondemand": {
  1487. "dangling": false,
  1488. "foreign_keys": {
  1489. "dashboard_widget_query": {
  1490. "kind": "FlexibleForeignKey",
  1491. "model": "sentry.dashboardwidgetquery",
  1492. "nullable": false
  1493. }
  1494. },
  1495. "model": "sentry.dashboardwidgetqueryondemand",
  1496. "relocation_dependencies": [],
  1497. "relocation_scope": "Organization",
  1498. "silos": [
  1499. "Region"
  1500. ],
  1501. "table_name": "sentry_dashboardwidgetqueryondemand",
  1502. "uniques": []
  1503. },
  1504. "sentry.debugidartifactbundle": {
  1505. "dangling": false,
  1506. "foreign_keys": {
  1507. "artifact_bundle": {
  1508. "kind": "FlexibleForeignKey",
  1509. "model": "sentry.artifactbundle",
  1510. "nullable": false
  1511. },
  1512. "organization_id": {
  1513. "kind": "ImplicitForeignKey",
  1514. "model": "sentry.organization",
  1515. "nullable": false
  1516. }
  1517. },
  1518. "model": "sentry.debugidartifactbundle",
  1519. "relocation_dependencies": [],
  1520. "relocation_scope": "Excluded",
  1521. "silos": [
  1522. "Region"
  1523. ],
  1524. "table_name": "sentry_debugidartifactbundle",
  1525. "uniques": []
  1526. },
  1527. "sentry.deletedorganization": {
  1528. "dangling": false,
  1529. "foreign_keys": {},
  1530. "model": "sentry.deletedorganization",
  1531. "relocation_dependencies": [],
  1532. "relocation_scope": "Excluded",
  1533. "silos": [
  1534. "Region"
  1535. ],
  1536. "table_name": "sentry_deletedorganization",
  1537. "uniques": []
  1538. },
  1539. "sentry.deletedproject": {
  1540. "dangling": false,
  1541. "foreign_keys": {
  1542. "organization_id": {
  1543. "kind": "ImplicitForeignKey",
  1544. "model": "sentry.organization",
  1545. "nullable": true
  1546. }
  1547. },
  1548. "model": "sentry.deletedproject",
  1549. "relocation_dependencies": [],
  1550. "relocation_scope": "Excluded",
  1551. "silos": [
  1552. "Region"
  1553. ],
  1554. "table_name": "sentry_deletedproject",
  1555. "uniques": []
  1556. },
  1557. "sentry.deletedteam": {
  1558. "dangling": false,
  1559. "foreign_keys": {
  1560. "organization_id": {
  1561. "kind": "ImplicitForeignKey",
  1562. "model": "sentry.organization",
  1563. "nullable": true
  1564. }
  1565. },
  1566. "model": "sentry.deletedteam",
  1567. "relocation_dependencies": [],
  1568. "relocation_scope": "Excluded",
  1569. "silos": [
  1570. "Region"
  1571. ],
  1572. "table_name": "sentry_deletedteam",
  1573. "uniques": []
  1574. },
  1575. "sentry.deploy": {
  1576. "dangling": false,
  1577. "foreign_keys": {
  1578. "environment_id": {
  1579. "kind": "ImplicitForeignKey",
  1580. "model": "sentry.environment",
  1581. "nullable": false
  1582. },
  1583. "organization_id": {
  1584. "kind": "ImplicitForeignKey",
  1585. "model": "sentry.organization",
  1586. "nullable": false
  1587. },
  1588. "release": {
  1589. "kind": "FlexibleForeignKey",
  1590. "model": "sentry.release",
  1591. "nullable": false
  1592. }
  1593. },
  1594. "model": "sentry.deploy",
  1595. "relocation_dependencies": [],
  1596. "relocation_scope": "Excluded",
  1597. "silos": [
  1598. "Region"
  1599. ],
  1600. "table_name": "sentry_deploy",
  1601. "uniques": []
  1602. },
  1603. "sentry.discoversavedquery": {
  1604. "dangling": false,
  1605. "foreign_keys": {
  1606. "created_by_id": {
  1607. "kind": "HybridCloudForeignKey",
  1608. "model": "sentry.user",
  1609. "nullable": true
  1610. },
  1611. "organization": {
  1612. "kind": "FlexibleForeignKey",
  1613. "model": "sentry.organization",
  1614. "nullable": false
  1615. }
  1616. },
  1617. "model": "sentry.discoversavedquery",
  1618. "relocation_dependencies": [],
  1619. "relocation_scope": "Excluded",
  1620. "silos": [
  1621. "Region"
  1622. ],
  1623. "table_name": "sentry_discoversavedquery",
  1624. "uniques": [
  1625. [
  1626. "created_by_id",
  1627. "is_homepage",
  1628. "organization"
  1629. ]
  1630. ]
  1631. },
  1632. "sentry.discoversavedqueryproject": {
  1633. "dangling": false,
  1634. "foreign_keys": {
  1635. "discover_saved_query": {
  1636. "kind": "FlexibleForeignKey",
  1637. "model": "sentry.discoversavedquery",
  1638. "nullable": false
  1639. },
  1640. "project": {
  1641. "kind": "FlexibleForeignKey",
  1642. "model": "sentry.project",
  1643. "nullable": false
  1644. }
  1645. },
  1646. "model": "sentry.discoversavedqueryproject",
  1647. "relocation_dependencies": [],
  1648. "relocation_scope": "Excluded",
  1649. "silos": [
  1650. "Region"
  1651. ],
  1652. "table_name": "sentry_discoversavedqueryproject",
  1653. "uniques": [
  1654. [
  1655. "discover_saved_query",
  1656. "project"
  1657. ]
  1658. ]
  1659. },
  1660. "sentry.distribution": {
  1661. "dangling": false,
  1662. "foreign_keys": {
  1663. "organization_id": {
  1664. "kind": "ImplicitForeignKey",
  1665. "model": "sentry.organization",
  1666. "nullable": false
  1667. },
  1668. "release": {
  1669. "kind": "FlexibleForeignKey",
  1670. "model": "sentry.release",
  1671. "nullable": false
  1672. }
  1673. },
  1674. "model": "sentry.distribution",
  1675. "relocation_dependencies": [],
  1676. "relocation_scope": "Excluded",
  1677. "silos": [
  1678. "Region"
  1679. ],
  1680. "table_name": "sentry_distribution",
  1681. "uniques": [
  1682. [
  1683. "name",
  1684. "release"
  1685. ]
  1686. ]
  1687. },
  1688. "sentry.docintegration": {
  1689. "dangling": false,
  1690. "foreign_keys": {},
  1691. "model": "sentry.docintegration",
  1692. "relocation_dependencies": [],
  1693. "relocation_scope": "Excluded",
  1694. "silos": [
  1695. "Control"
  1696. ],
  1697. "table_name": "sentry_docintegration",
  1698. "uniques": [
  1699. [
  1700. "slug"
  1701. ]
  1702. ]
  1703. },
  1704. "sentry.docintegrationavatar": {
  1705. "dangling": false,
  1706. "foreign_keys": {
  1707. "control_file_id": {
  1708. "kind": "ImplicitForeignKey",
  1709. "model": "sentry.controlfile",
  1710. "nullable": true
  1711. },
  1712. "doc_integration": {
  1713. "kind": "FlexibleForeignKey",
  1714. "model": "sentry.docintegration",
  1715. "nullable": false
  1716. }
  1717. },
  1718. "model": "sentry.docintegrationavatar",
  1719. "relocation_dependencies": [],
  1720. "relocation_scope": "Excluded",
  1721. "silos": [
  1722. "Control"
  1723. ],
  1724. "table_name": "sentry_docintegrationavatar",
  1725. "uniques": [
  1726. [
  1727. "control_file_id"
  1728. ],
  1729. [
  1730. "ident"
  1731. ]
  1732. ]
  1733. },
  1734. "sentry.email": {
  1735. "dangling": true,
  1736. "foreign_keys": {},
  1737. "model": "sentry.email",
  1738. "relocation_dependencies": [
  1739. "sentry.user"
  1740. ],
  1741. "relocation_scope": "User",
  1742. "silos": [
  1743. "Control"
  1744. ],
  1745. "table_name": "sentry_email",
  1746. "uniques": [
  1747. [
  1748. "email"
  1749. ]
  1750. ]
  1751. },
  1752. "sentry.environment": {
  1753. "dangling": false,
  1754. "foreign_keys": {
  1755. "organization_id": {
  1756. "kind": "ImplicitForeignKey",
  1757. "model": "sentry.organization",
  1758. "nullable": false
  1759. }
  1760. },
  1761. "model": "sentry.environment",
  1762. "relocation_dependencies": [],
  1763. "relocation_scope": "Organization",
  1764. "silos": [
  1765. "Region"
  1766. ],
  1767. "table_name": "sentry_environment",
  1768. "uniques": [
  1769. [
  1770. "name",
  1771. "organization_id"
  1772. ]
  1773. ]
  1774. },
  1775. "sentry.environmentproject": {
  1776. "dangling": false,
  1777. "foreign_keys": {
  1778. "environment": {
  1779. "kind": "FlexibleForeignKey",
  1780. "model": "sentry.environment",
  1781. "nullable": false
  1782. },
  1783. "project": {
  1784. "kind": "FlexibleForeignKey",
  1785. "model": "sentry.project",
  1786. "nullable": false
  1787. }
  1788. },
  1789. "model": "sentry.environmentproject",
  1790. "relocation_dependencies": [],
  1791. "relocation_scope": "Organization",
  1792. "silos": [
  1793. "Region"
  1794. ],
  1795. "table_name": "sentry_environmentproject",
  1796. "uniques": [
  1797. [
  1798. "environment",
  1799. "project"
  1800. ]
  1801. ]
  1802. },
  1803. "sentry.eventattachment": {
  1804. "dangling": false,
  1805. "foreign_keys": {
  1806. "file_id": {
  1807. "kind": "ImplicitForeignKey",
  1808. "model": "sentry.file",
  1809. "nullable": true
  1810. },
  1811. "group_id": {
  1812. "kind": "ImplicitForeignKey",
  1813. "model": "sentry.group",
  1814. "nullable": true
  1815. },
  1816. "project_id": {
  1817. "kind": "ImplicitForeignKey",
  1818. "model": "sentry.project",
  1819. "nullable": false
  1820. }
  1821. },
  1822. "model": "sentry.eventattachment",
  1823. "relocation_dependencies": [],
  1824. "relocation_scope": "Excluded",
  1825. "silos": [
  1826. "Region"
  1827. ],
  1828. "table_name": "sentry_eventattachment",
  1829. "uniques": []
  1830. },
  1831. "sentry.eventprocessingissue": {
  1832. "dangling": false,
  1833. "foreign_keys": {
  1834. "processing_issue": {
  1835. "kind": "FlexibleForeignKey",
  1836. "model": "sentry.processingissue",
  1837. "nullable": false
  1838. },
  1839. "raw_event": {
  1840. "kind": "FlexibleForeignKey",
  1841. "model": "sentry.rawevent",
  1842. "nullable": false
  1843. }
  1844. },
  1845. "model": "sentry.eventprocessingissue",
  1846. "relocation_dependencies": [],
  1847. "relocation_scope": "Excluded",
  1848. "silos": [
  1849. "Region"
  1850. ],
  1851. "table_name": "sentry_eventprocessingissue",
  1852. "uniques": [
  1853. [
  1854. "processing_issue",
  1855. "raw_event"
  1856. ]
  1857. ]
  1858. },
  1859. "sentry.exporteddata": {
  1860. "dangling": false,
  1861. "foreign_keys": {
  1862. "file_id": {
  1863. "kind": "ImplicitForeignKey",
  1864. "model": "sentry.file",
  1865. "nullable": true
  1866. },
  1867. "organization": {
  1868. "kind": "FlexibleForeignKey",
  1869. "model": "sentry.organization",
  1870. "nullable": false
  1871. },
  1872. "user_id": {
  1873. "kind": "HybridCloudForeignKey",
  1874. "model": "sentry.user",
  1875. "nullable": true
  1876. }
  1877. },
  1878. "model": "sentry.exporteddata",
  1879. "relocation_dependencies": [],
  1880. "relocation_scope": "Excluded",
  1881. "silos": [
  1882. "Region"
  1883. ],
  1884. "table_name": "sentry_exporteddata",
  1885. "uniques": []
  1886. },
  1887. "sentry.exporteddatablob": {
  1888. "dangling": false,
  1889. "foreign_keys": {
  1890. "data_export": {
  1891. "kind": "FlexibleForeignKey",
  1892. "model": "sentry.exporteddata",
  1893. "nullable": false
  1894. }
  1895. },
  1896. "model": "sentry.exporteddatablob",
  1897. "relocation_dependencies": [],
  1898. "relocation_scope": "Excluded",
  1899. "silos": [
  1900. "Region"
  1901. ],
  1902. "table_name": "sentry_exporteddatablob",
  1903. "uniques": [
  1904. [
  1905. "blob_id",
  1906. "data_export",
  1907. "offset"
  1908. ]
  1909. ]
  1910. },
  1911. "sentry.externalactor": {
  1912. "dangling": false,
  1913. "foreign_keys": {
  1914. "integration_id": {
  1915. "kind": "HybridCloudForeignKey",
  1916. "model": "sentry.integration",
  1917. "nullable": false
  1918. },
  1919. "organization": {
  1920. "kind": "FlexibleForeignKey",
  1921. "model": "sentry.organization",
  1922. "nullable": false
  1923. },
  1924. "team": {
  1925. "kind": "FlexibleForeignKey",
  1926. "model": "sentry.team",
  1927. "nullable": true
  1928. },
  1929. "user_id": {
  1930. "kind": "HybridCloudForeignKey",
  1931. "model": "sentry.user",
  1932. "nullable": true
  1933. }
  1934. },
  1935. "model": "sentry.externalactor",
  1936. "relocation_dependencies": [],
  1937. "relocation_scope": "Excluded",
  1938. "silos": [
  1939. "Region"
  1940. ],
  1941. "table_name": "sentry_externalactor",
  1942. "uniques": [
  1943. [
  1944. "external_name",
  1945. "organization",
  1946. "provider",
  1947. "team_id"
  1948. ],
  1949. [
  1950. "external_name",
  1951. "organization",
  1952. "provider",
  1953. "user_id"
  1954. ]
  1955. ]
  1956. },
  1957. "sentry.externalissue": {
  1958. "dangling": false,
  1959. "foreign_keys": {
  1960. "integration_id": {
  1961. "kind": "HybridCloudForeignKey",
  1962. "model": "sentry.integration",
  1963. "nullable": false
  1964. },
  1965. "organization": {
  1966. "kind": "FlexibleForeignKey",
  1967. "model": "sentry.organization",
  1968. "nullable": false
  1969. }
  1970. },
  1971. "model": "sentry.externalissue",
  1972. "relocation_dependencies": [],
  1973. "relocation_scope": "Excluded",
  1974. "silos": [
  1975. "Region"
  1976. ],
  1977. "table_name": "sentry_externalissue",
  1978. "uniques": [
  1979. [
  1980. "integration_id",
  1981. "key",
  1982. "organization"
  1983. ]
  1984. ]
  1985. },
  1986. "sentry.featureadoption": {
  1987. "dangling": false,
  1988. "foreign_keys": {
  1989. "organization": {
  1990. "kind": "FlexibleForeignKey",
  1991. "model": "sentry.organization",
  1992. "nullable": false
  1993. }
  1994. },
  1995. "model": "sentry.featureadoption",
  1996. "relocation_dependencies": [],
  1997. "relocation_scope": "Excluded",
  1998. "silos": [
  1999. "Region"
  2000. ],
  2001. "table_name": "sentry_featureadoption",
  2002. "uniques": [
  2003. [
  2004. "feature_id",
  2005. "organization"
  2006. ]
  2007. ]
  2008. },
  2009. "sentry.file": {
  2010. "dangling": false,
  2011. "foreign_keys": {
  2012. "blob": {
  2013. "kind": "FlexibleForeignKey",
  2014. "model": "sentry.fileblob",
  2015. "nullable": true
  2016. }
  2017. },
  2018. "model": "sentry.file",
  2019. "relocation_dependencies": [],
  2020. "relocation_scope": "Excluded",
  2021. "silos": [
  2022. "Region"
  2023. ],
  2024. "table_name": "sentry_file",
  2025. "uniques": []
  2026. },
  2027. "sentry.fileblob": {
  2028. "dangling": false,
  2029. "foreign_keys": {},
  2030. "model": "sentry.fileblob",
  2031. "relocation_dependencies": [],
  2032. "relocation_scope": "Excluded",
  2033. "silos": [
  2034. "Region"
  2035. ],
  2036. "table_name": "sentry_fileblob",
  2037. "uniques": [
  2038. [
  2039. "checksum"
  2040. ]
  2041. ]
  2042. },
  2043. "sentry.fileblobindex": {
  2044. "dangling": false,
  2045. "foreign_keys": {
  2046. "blob": {
  2047. "kind": "FlexibleForeignKey",
  2048. "model": "sentry.fileblob",
  2049. "nullable": false
  2050. },
  2051. "file": {
  2052. "kind": "FlexibleForeignKey",
  2053. "model": "sentry.file",
  2054. "nullable": false
  2055. }
  2056. },
  2057. "model": "sentry.fileblobindex",
  2058. "relocation_dependencies": [],
  2059. "relocation_scope": "Excluded",
  2060. "silos": [
  2061. "Region"
  2062. ],
  2063. "table_name": "sentry_fileblobindex",
  2064. "uniques": [
  2065. [
  2066. "blob",
  2067. "file",
  2068. "offset"
  2069. ]
  2070. ]
  2071. },
  2072. "sentry.fileblobowner": {
  2073. "dangling": false,
  2074. "foreign_keys": {
  2075. "blob": {
  2076. "kind": "FlexibleForeignKey",
  2077. "model": "sentry.fileblob",
  2078. "nullable": false
  2079. },
  2080. "organization_id": {
  2081. "kind": "ImplicitForeignKey",
  2082. "model": "sentry.organization",
  2083. "nullable": false
  2084. }
  2085. },
  2086. "model": "sentry.fileblobowner",
  2087. "relocation_dependencies": [],
  2088. "relocation_scope": "Excluded",
  2089. "silos": [
  2090. "Region"
  2091. ],
  2092. "table_name": "sentry_fileblobowner",
  2093. "uniques": [
  2094. [
  2095. "blob",
  2096. "organization_id"
  2097. ]
  2098. ]
  2099. },
  2100. "sentry.group": {
  2101. "dangling": false,
  2102. "foreign_keys": {
  2103. "first_release": {
  2104. "kind": "FlexibleForeignKey",
  2105. "model": "sentry.release",
  2106. "nullable": true
  2107. },
  2108. "project": {
  2109. "kind": "FlexibleForeignKey",
  2110. "model": "sentry.project",
  2111. "nullable": false
  2112. }
  2113. },
  2114. "model": "sentry.group",
  2115. "relocation_dependencies": [],
  2116. "relocation_scope": "Excluded",
  2117. "silos": [
  2118. "Region"
  2119. ],
  2120. "table_name": "sentry_groupedmessage",
  2121. "uniques": [
  2122. [
  2123. "id",
  2124. "project"
  2125. ],
  2126. [
  2127. "project",
  2128. "short_id"
  2129. ]
  2130. ]
  2131. },
  2132. "sentry.groupassignee": {
  2133. "dangling": false,
  2134. "foreign_keys": {
  2135. "group": {
  2136. "kind": "FlexibleForeignKey",
  2137. "model": "sentry.group",
  2138. "nullable": false
  2139. },
  2140. "project": {
  2141. "kind": "FlexibleForeignKey",
  2142. "model": "sentry.project",
  2143. "nullable": false
  2144. },
  2145. "team": {
  2146. "kind": "FlexibleForeignKey",
  2147. "model": "sentry.team",
  2148. "nullable": true
  2149. },
  2150. "user_id": {
  2151. "kind": "HybridCloudForeignKey",
  2152. "model": "sentry.user",
  2153. "nullable": true
  2154. }
  2155. },
  2156. "model": "sentry.groupassignee",
  2157. "relocation_dependencies": [],
  2158. "relocation_scope": "Excluded",
  2159. "silos": [
  2160. "Region"
  2161. ],
  2162. "table_name": "sentry_groupasignee",
  2163. "uniques": [
  2164. [
  2165. "group"
  2166. ],
  2167. [
  2168. "group",
  2169. "project"
  2170. ]
  2171. ]
  2172. },
  2173. "sentry.groupbookmark": {
  2174. "dangling": false,
  2175. "foreign_keys": {
  2176. "group": {
  2177. "kind": "FlexibleForeignKey",
  2178. "model": "sentry.group",
  2179. "nullable": false
  2180. },
  2181. "project": {
  2182. "kind": "FlexibleForeignKey",
  2183. "model": "sentry.project",
  2184. "nullable": false
  2185. },
  2186. "user_id": {
  2187. "kind": "HybridCloudForeignKey",
  2188. "model": "sentry.user",
  2189. "nullable": false
  2190. }
  2191. },
  2192. "model": "sentry.groupbookmark",
  2193. "relocation_dependencies": [],
  2194. "relocation_scope": "Excluded",
  2195. "silos": [
  2196. "Region"
  2197. ],
  2198. "table_name": "sentry_groupbookmark",
  2199. "uniques": [
  2200. [
  2201. "group",
  2202. "project",
  2203. "user_id"
  2204. ]
  2205. ]
  2206. },
  2207. "sentry.groupcommitresolution": {
  2208. "dangling": false,
  2209. "foreign_keys": {
  2210. "commit_id": {
  2211. "kind": "ImplicitForeignKey",
  2212. "model": "sentry.commit",
  2213. "nullable": false
  2214. },
  2215. "group_id": {
  2216. "kind": "ImplicitForeignKey",
  2217. "model": "sentry.group",
  2218. "nullable": false
  2219. }
  2220. },
  2221. "model": "sentry.groupcommitresolution",
  2222. "relocation_dependencies": [],
  2223. "relocation_scope": "Excluded",
  2224. "silos": [
  2225. "Region"
  2226. ],
  2227. "table_name": "sentry_groupcommitresolution",
  2228. "uniques": [
  2229. [
  2230. "commit_id",
  2231. "group_id"
  2232. ]
  2233. ]
  2234. },
  2235. "sentry.groupemailthread": {
  2236. "dangling": false,
  2237. "foreign_keys": {
  2238. "group": {
  2239. "kind": "FlexibleForeignKey",
  2240. "model": "sentry.group",
  2241. "nullable": false
  2242. },
  2243. "project": {
  2244. "kind": "FlexibleForeignKey",
  2245. "model": "sentry.project",
  2246. "nullable": false
  2247. }
  2248. },
  2249. "model": "sentry.groupemailthread",
  2250. "relocation_dependencies": [],
  2251. "relocation_scope": "Excluded",
  2252. "silos": [
  2253. "Region"
  2254. ],
  2255. "table_name": "sentry_groupemailthread",
  2256. "uniques": [
  2257. [
  2258. "email",
  2259. "group"
  2260. ],
  2261. [
  2262. "email",
  2263. "msgid"
  2264. ]
  2265. ]
  2266. },
  2267. "sentry.groupenvironment": {
  2268. "dangling": false,
  2269. "foreign_keys": {
  2270. "environment": {
  2271. "kind": "FlexibleForeignKey",
  2272. "model": "sentry.environment",
  2273. "nullable": false
  2274. },
  2275. "first_release": {
  2276. "kind": "FlexibleForeignKey",
  2277. "model": "sentry.release",
  2278. "nullable": true
  2279. },
  2280. "group": {
  2281. "kind": "FlexibleForeignKey",
  2282. "model": "sentry.group",
  2283. "nullable": false
  2284. }
  2285. },
  2286. "model": "sentry.groupenvironment",
  2287. "relocation_dependencies": [],
  2288. "relocation_scope": "Excluded",
  2289. "silos": [
  2290. "Region"
  2291. ],
  2292. "table_name": "sentry_groupenvironment",
  2293. "uniques": [
  2294. [
  2295. "environment",
  2296. "group"
  2297. ]
  2298. ]
  2299. },
  2300. "sentry.grouphash": {
  2301. "dangling": false,
  2302. "foreign_keys": {
  2303. "group": {
  2304. "kind": "FlexibleForeignKey",
  2305. "model": "sentry.group",
  2306. "nullable": true
  2307. },
  2308. "group_tombstone_id": {
  2309. "kind": "ImplicitForeignKey",
  2310. "model": "sentry.grouptombstone",
  2311. "nullable": true
  2312. },
  2313. "project": {
  2314. "kind": "FlexibleForeignKey",
  2315. "model": "sentry.project",
  2316. "nullable": true
  2317. }
  2318. },
  2319. "model": "sentry.grouphash",
  2320. "relocation_dependencies": [],
  2321. "relocation_scope": "Excluded",
  2322. "silos": [
  2323. "Region"
  2324. ],
  2325. "table_name": "sentry_grouphash",
  2326. "uniques": [
  2327. [
  2328. "hash",
  2329. "project"
  2330. ]
  2331. ]
  2332. },
  2333. "sentry.grouphistory": {
  2334. "dangling": false,
  2335. "foreign_keys": {
  2336. "group": {
  2337. "kind": "FlexibleForeignKey",
  2338. "model": "sentry.group",
  2339. "nullable": false
  2340. },
  2341. "organization": {
  2342. "kind": "FlexibleForeignKey",
  2343. "model": "sentry.organization",
  2344. "nullable": false
  2345. },
  2346. "project": {
  2347. "kind": "FlexibleForeignKey",
  2348. "model": "sentry.project",
  2349. "nullable": false
  2350. },
  2351. "release": {
  2352. "kind": "FlexibleForeignKey",
  2353. "model": "sentry.release",
  2354. "nullable": true
  2355. },
  2356. "team": {
  2357. "kind": "FlexibleForeignKey",
  2358. "model": "sentry.team",
  2359. "nullable": true
  2360. },
  2361. "user_id": {
  2362. "kind": "HybridCloudForeignKey",
  2363. "model": "sentry.user",
  2364. "nullable": true
  2365. }
  2366. },
  2367. "model": "sentry.grouphistory",
  2368. "relocation_dependencies": [],
  2369. "relocation_scope": "Excluded",
  2370. "silos": [
  2371. "Region"
  2372. ],
  2373. "table_name": "sentry_grouphistory",
  2374. "uniques": []
  2375. },
  2376. "sentry.groupinbox": {
  2377. "dangling": false,
  2378. "foreign_keys": {
  2379. "group": {
  2380. "kind": "FlexibleForeignKey",
  2381. "model": "sentry.group",
  2382. "nullable": false
  2383. },
  2384. "organization": {
  2385. "kind": "FlexibleForeignKey",
  2386. "model": "sentry.organization",
  2387. "nullable": true
  2388. },
  2389. "project": {
  2390. "kind": "FlexibleForeignKey",
  2391. "model": "sentry.project",
  2392. "nullable": true
  2393. }
  2394. },
  2395. "model": "sentry.groupinbox",
  2396. "relocation_dependencies": [],
  2397. "relocation_scope": "Excluded",
  2398. "silos": [
  2399. "Region"
  2400. ],
  2401. "table_name": "sentry_groupinbox",
  2402. "uniques": [
  2403. [
  2404. "group"
  2405. ]
  2406. ]
  2407. },
  2408. "sentry.grouplink": {
  2409. "dangling": false,
  2410. "foreign_keys": {
  2411. "group": {
  2412. "kind": "FlexibleForeignKey",
  2413. "model": "sentry.group",
  2414. "nullable": false
  2415. },
  2416. "project": {
  2417. "kind": "FlexibleForeignKey",
  2418. "model": "sentry.project",
  2419. "nullable": false
  2420. }
  2421. },
  2422. "model": "sentry.grouplink",
  2423. "relocation_dependencies": [],
  2424. "relocation_scope": "Excluded",
  2425. "silos": [
  2426. "Region"
  2427. ],
  2428. "table_name": "sentry_grouplink",
  2429. "uniques": [
  2430. [
  2431. "group",
  2432. "linked_id",
  2433. "linked_type"
  2434. ]
  2435. ]
  2436. },
  2437. "sentry.groupmeta": {
  2438. "dangling": false,
  2439. "foreign_keys": {
  2440. "group": {
  2441. "kind": "FlexibleForeignKey",
  2442. "model": "sentry.group",
  2443. "nullable": false
  2444. }
  2445. },
  2446. "model": "sentry.groupmeta",
  2447. "relocation_dependencies": [],
  2448. "relocation_scope": "Excluded",
  2449. "silos": [
  2450. "Region"
  2451. ],
  2452. "table_name": "sentry_groupmeta",
  2453. "uniques": [
  2454. [
  2455. "group",
  2456. "key"
  2457. ]
  2458. ]
  2459. },
  2460. "sentry.groupowner": {
  2461. "dangling": false,
  2462. "foreign_keys": {
  2463. "group": {
  2464. "kind": "FlexibleForeignKey",
  2465. "model": "sentry.group",
  2466. "nullable": false
  2467. },
  2468. "organization": {
  2469. "kind": "FlexibleForeignKey",
  2470. "model": "sentry.organization",
  2471. "nullable": false
  2472. },
  2473. "project": {
  2474. "kind": "FlexibleForeignKey",
  2475. "model": "sentry.project",
  2476. "nullable": false
  2477. },
  2478. "team": {
  2479. "kind": "FlexibleForeignKey",
  2480. "model": "sentry.team",
  2481. "nullable": true
  2482. },
  2483. "user_id": {
  2484. "kind": "HybridCloudForeignKey",
  2485. "model": "sentry.user",
  2486. "nullable": true
  2487. }
  2488. },
  2489. "model": "sentry.groupowner",
  2490. "relocation_dependencies": [],
  2491. "relocation_scope": "Excluded",
  2492. "silos": [
  2493. "Region"
  2494. ],
  2495. "table_name": "sentry_groupowner",
  2496. "uniques": []
  2497. },
  2498. "sentry.groupredirect": {
  2499. "dangling": false,
  2500. "foreign_keys": {
  2501. "group_id": {
  2502. "kind": "ImplicitForeignKey",
  2503. "model": "sentry.group",
  2504. "nullable": false
  2505. },
  2506. "organization_id": {
  2507. "kind": "ImplicitForeignKey",
  2508. "model": "sentry.organization",
  2509. "nullable": true
  2510. }
  2511. },
  2512. "model": "sentry.groupredirect",
  2513. "relocation_dependencies": [],
  2514. "relocation_scope": "Excluded",
  2515. "silos": [
  2516. "Region"
  2517. ],
  2518. "table_name": "sentry_groupredirect",
  2519. "uniques": [
  2520. [
  2521. "organization_id",
  2522. "previous_project_slug",
  2523. "previous_short_id"
  2524. ],
  2525. [
  2526. "previous_group_id"
  2527. ]
  2528. ]
  2529. },
  2530. "sentry.grouprelease": {
  2531. "dangling": false,
  2532. "foreign_keys": {
  2533. "group_id": {
  2534. "kind": "ImplicitForeignKey",
  2535. "model": "sentry.group",
  2536. "nullable": false
  2537. },
  2538. "project_id": {
  2539. "kind": "ImplicitForeignKey",
  2540. "model": "sentry.project",
  2541. "nullable": false
  2542. },
  2543. "release_id": {
  2544. "kind": "ImplicitForeignKey",
  2545. "model": "sentry.release",
  2546. "nullable": false
  2547. }
  2548. },
  2549. "model": "sentry.grouprelease",
  2550. "relocation_dependencies": [],
  2551. "relocation_scope": "Excluded",
  2552. "silos": [
  2553. "Region"
  2554. ],
  2555. "table_name": "sentry_grouprelease",
  2556. "uniques": [
  2557. [
  2558. "environment",
  2559. "group_id",
  2560. "release_id"
  2561. ]
  2562. ]
  2563. },
  2564. "sentry.groupresolution": {
  2565. "dangling": false,
  2566. "foreign_keys": {
  2567. "group": {
  2568. "kind": "FlexibleForeignKey",
  2569. "model": "sentry.group",
  2570. "nullable": false
  2571. },
  2572. "release": {
  2573. "kind": "FlexibleForeignKey",
  2574. "model": "sentry.release",
  2575. "nullable": false
  2576. }
  2577. },
  2578. "model": "sentry.groupresolution",
  2579. "relocation_dependencies": [],
  2580. "relocation_scope": "Excluded",
  2581. "silos": [
  2582. "Region"
  2583. ],
  2584. "table_name": "sentry_groupresolution",
  2585. "uniques": [
  2586. [
  2587. "group"
  2588. ]
  2589. ]
  2590. },
  2591. "sentry.grouprulestatus": {
  2592. "dangling": false,
  2593. "foreign_keys": {
  2594. "group": {
  2595. "kind": "FlexibleForeignKey",
  2596. "model": "sentry.group",
  2597. "nullable": false
  2598. },
  2599. "project": {
  2600. "kind": "FlexibleForeignKey",
  2601. "model": "sentry.project",
  2602. "nullable": false
  2603. },
  2604. "rule": {
  2605. "kind": "FlexibleForeignKey",
  2606. "model": "sentry.rule",
  2607. "nullable": false
  2608. }
  2609. },
  2610. "model": "sentry.grouprulestatus",
  2611. "relocation_dependencies": [],
  2612. "relocation_scope": "Excluded",
  2613. "silos": [
  2614. "Region"
  2615. ],
  2616. "table_name": "sentry_grouprulestatus",
  2617. "uniques": [
  2618. [
  2619. "group",
  2620. "rule"
  2621. ]
  2622. ]
  2623. },
  2624. "sentry.groupseen": {
  2625. "dangling": false,
  2626. "foreign_keys": {
  2627. "group": {
  2628. "kind": "FlexibleForeignKey",
  2629. "model": "sentry.group",
  2630. "nullable": false
  2631. },
  2632. "project": {
  2633. "kind": "FlexibleForeignKey",
  2634. "model": "sentry.project",
  2635. "nullable": false
  2636. },
  2637. "user_id": {
  2638. "kind": "HybridCloudForeignKey",
  2639. "model": "sentry.user",
  2640. "nullable": false
  2641. }
  2642. },
  2643. "model": "sentry.groupseen",
  2644. "relocation_dependencies": [],
  2645. "relocation_scope": "Excluded",
  2646. "silos": [
  2647. "Region"
  2648. ],
  2649. "table_name": "sentry_groupseen",
  2650. "uniques": [
  2651. [
  2652. "group",
  2653. "user_id"
  2654. ]
  2655. ]
  2656. },
  2657. "sentry.groupshare": {
  2658. "dangling": false,
  2659. "foreign_keys": {
  2660. "group": {
  2661. "kind": "FlexibleForeignKey",
  2662. "model": "sentry.group",
  2663. "nullable": false
  2664. },
  2665. "project": {
  2666. "kind": "FlexibleForeignKey",
  2667. "model": "sentry.project",
  2668. "nullable": false
  2669. },
  2670. "user_id": {
  2671. "kind": "HybridCloudForeignKey",
  2672. "model": "sentry.user",
  2673. "nullable": true
  2674. }
  2675. },
  2676. "model": "sentry.groupshare",
  2677. "relocation_dependencies": [],
  2678. "relocation_scope": "Excluded",
  2679. "silos": [
  2680. "Region"
  2681. ],
  2682. "table_name": "sentry_groupshare",
  2683. "uniques": [
  2684. [
  2685. "group"
  2686. ],
  2687. [
  2688. "uuid"
  2689. ]
  2690. ]
  2691. },
  2692. "sentry.groupsnooze": {
  2693. "dangling": false,
  2694. "foreign_keys": {
  2695. "group": {
  2696. "kind": "FlexibleForeignKey",
  2697. "model": "sentry.group",
  2698. "nullable": false
  2699. }
  2700. },
  2701. "model": "sentry.groupsnooze",
  2702. "relocation_dependencies": [],
  2703. "relocation_scope": "Excluded",
  2704. "silos": [
  2705. "Region"
  2706. ],
  2707. "table_name": "sentry_groupsnooze",
  2708. "uniques": [
  2709. [
  2710. "group"
  2711. ]
  2712. ]
  2713. },
  2714. "sentry.groupsubscription": {
  2715. "dangling": false,
  2716. "foreign_keys": {
  2717. "group": {
  2718. "kind": "FlexibleForeignKey",
  2719. "model": "sentry.group",
  2720. "nullable": false
  2721. },
  2722. "project": {
  2723. "kind": "FlexibleForeignKey",
  2724. "model": "sentry.project",
  2725. "nullable": false
  2726. },
  2727. "team": {
  2728. "kind": "FlexibleForeignKey",
  2729. "model": "sentry.team",
  2730. "nullable": true
  2731. },
  2732. "user_id": {
  2733. "kind": "HybridCloudForeignKey",
  2734. "model": "sentry.user",
  2735. "nullable": true
  2736. }
  2737. },
  2738. "model": "sentry.groupsubscription",
  2739. "relocation_dependencies": [],
  2740. "relocation_scope": "Excluded",
  2741. "silos": [
  2742. "Region"
  2743. ],
  2744. "table_name": "sentry_groupsubscription",
  2745. "uniques": [
  2746. [
  2747. "group",
  2748. "team"
  2749. ],
  2750. [
  2751. "group",
  2752. "user_id"
  2753. ]
  2754. ]
  2755. },
  2756. "sentry.grouptombstone": {
  2757. "dangling": false,
  2758. "foreign_keys": {
  2759. "project": {
  2760. "kind": "FlexibleForeignKey",
  2761. "model": "sentry.project",
  2762. "nullable": false
  2763. }
  2764. },
  2765. "model": "sentry.grouptombstone",
  2766. "relocation_dependencies": [],
  2767. "relocation_scope": "Excluded",
  2768. "silos": [
  2769. "Region"
  2770. ],
  2771. "table_name": "sentry_grouptombstone",
  2772. "uniques": [
  2773. [
  2774. "previous_group_id"
  2775. ]
  2776. ]
  2777. },
  2778. "sentry.identity": {
  2779. "dangling": false,
  2780. "foreign_keys": {
  2781. "idp": {
  2782. "kind": "FlexibleForeignKey",
  2783. "model": "sentry.identityprovider",
  2784. "nullable": false
  2785. },
  2786. "user": {
  2787. "kind": "FlexibleForeignKey",
  2788. "model": "sentry.user",
  2789. "nullable": false
  2790. }
  2791. },
  2792. "model": "sentry.identity",
  2793. "relocation_dependencies": [],
  2794. "relocation_scope": "Excluded",
  2795. "silos": [
  2796. "Control"
  2797. ],
  2798. "table_name": "sentry_identity",
  2799. "uniques": [
  2800. [
  2801. "external_id",
  2802. "idp"
  2803. ],
  2804. [
  2805. "idp",
  2806. "user"
  2807. ]
  2808. ]
  2809. },
  2810. "sentry.identityprovider": {
  2811. "dangling": false,
  2812. "foreign_keys": {},
  2813. "model": "sentry.identityprovider",
  2814. "relocation_dependencies": [],
  2815. "relocation_scope": "Excluded",
  2816. "silos": [
  2817. "Control"
  2818. ],
  2819. "table_name": "sentry_identityprovider",
  2820. "uniques": [
  2821. [
  2822. "external_id",
  2823. "type"
  2824. ]
  2825. ]
  2826. },
  2827. "sentry.incident": {
  2828. "dangling": false,
  2829. "foreign_keys": {
  2830. "activation": {
  2831. "kind": "FlexibleForeignKey",
  2832. "model": "sentry.alertruleactivations",
  2833. "nullable": true
  2834. },
  2835. "alert_rule": {
  2836. "kind": "FlexibleForeignKey",
  2837. "model": "sentry.alertrule",
  2838. "nullable": false
  2839. },
  2840. "organization": {
  2841. "kind": "FlexibleForeignKey",
  2842. "model": "sentry.organization",
  2843. "nullable": false
  2844. }
  2845. },
  2846. "model": "sentry.incident",
  2847. "relocation_dependencies": [],
  2848. "relocation_scope": "Organization",
  2849. "silos": [
  2850. "Region"
  2851. ],
  2852. "table_name": "sentry_incident",
  2853. "uniques": [
  2854. [
  2855. "identifier",
  2856. "organization"
  2857. ]
  2858. ]
  2859. },
  2860. "sentry.incidentactivity": {
  2861. "dangling": false,
  2862. "foreign_keys": {
  2863. "incident": {
  2864. "kind": "FlexibleForeignKey",
  2865. "model": "sentry.incident",
  2866. "nullable": false
  2867. },
  2868. "user_id": {
  2869. "kind": "HybridCloudForeignKey",
  2870. "model": "sentry.user",
  2871. "nullable": true
  2872. }
  2873. },
  2874. "model": "sentry.incidentactivity",
  2875. "relocation_dependencies": [],
  2876. "relocation_scope": "Organization",
  2877. "silos": [
  2878. "Region"
  2879. ],
  2880. "table_name": "sentry_incidentactivity",
  2881. "uniques": []
  2882. },
  2883. "sentry.incidentproject": {
  2884. "dangling": false,
  2885. "foreign_keys": {
  2886. "incident": {
  2887. "kind": "FlexibleForeignKey",
  2888. "model": "sentry.incident",
  2889. "nullable": false
  2890. },
  2891. "project": {
  2892. "kind": "FlexibleForeignKey",
  2893. "model": "sentry.project",
  2894. "nullable": false
  2895. }
  2896. },
  2897. "model": "sentry.incidentproject",
  2898. "relocation_dependencies": [],
  2899. "relocation_scope": "Excluded",
  2900. "silos": [
  2901. "Region"
  2902. ],
  2903. "table_name": "sentry_incidentproject",
  2904. "uniques": [
  2905. [
  2906. "incident",
  2907. "project"
  2908. ]
  2909. ]
  2910. },
  2911. "sentry.incidentseen": {
  2912. "dangling": false,
  2913. "foreign_keys": {
  2914. "incident": {
  2915. "kind": "FlexibleForeignKey",
  2916. "model": "sentry.incident",
  2917. "nullable": false
  2918. },
  2919. "user_id": {
  2920. "kind": "HybridCloudForeignKey",
  2921. "model": "sentry.user",
  2922. "nullable": false
  2923. }
  2924. },
  2925. "model": "sentry.incidentseen",
  2926. "relocation_dependencies": [],
  2927. "relocation_scope": "Excluded",
  2928. "silos": [
  2929. "Region"
  2930. ],
  2931. "table_name": "sentry_incidentseen",
  2932. "uniques": [
  2933. [
  2934. "incident",
  2935. "user_id"
  2936. ]
  2937. ]
  2938. },
  2939. "sentry.incidentsnapshot": {
  2940. "dangling": false,
  2941. "foreign_keys": {
  2942. "event_stats_snapshot": {
  2943. "kind": "FlexibleForeignKey",
  2944. "model": "sentry.timeseriessnapshot",
  2945. "nullable": false
  2946. },
  2947. "incident": {
  2948. "kind": "OneToOneCascadeDeletes",
  2949. "model": "sentry.incident",
  2950. "nullable": false
  2951. }
  2952. },
  2953. "model": "sentry.incidentsnapshot",
  2954. "relocation_dependencies": [],
  2955. "relocation_scope": "Organization",
  2956. "silos": [
  2957. "Region"
  2958. ],
  2959. "table_name": "sentry_incidentsnapshot",
  2960. "uniques": [
  2961. [
  2962. "incident"
  2963. ]
  2964. ]
  2965. },
  2966. "sentry.incidentsubscription": {
  2967. "dangling": false,
  2968. "foreign_keys": {
  2969. "incident": {
  2970. "kind": "FlexibleForeignKey",
  2971. "model": "sentry.incident",
  2972. "nullable": false
  2973. },
  2974. "user_id": {
  2975. "kind": "HybridCloudForeignKey",
  2976. "model": "sentry.user",
  2977. "nullable": false
  2978. }
  2979. },
  2980. "model": "sentry.incidentsubscription",
  2981. "relocation_dependencies": [],
  2982. "relocation_scope": "Organization",
  2983. "silos": [
  2984. "Region"
  2985. ],
  2986. "table_name": "sentry_incidentsubscription",
  2987. "uniques": [
  2988. [
  2989. "incident",
  2990. "user_id"
  2991. ]
  2992. ]
  2993. },
  2994. "sentry.incidenttrigger": {
  2995. "dangling": false,
  2996. "foreign_keys": {
  2997. "alert_rule_trigger": {
  2998. "kind": "FlexibleForeignKey",
  2999. "model": "sentry.alertruletrigger",
  3000. "nullable": false
  3001. },
  3002. "incident": {
  3003. "kind": "FlexibleForeignKey",
  3004. "model": "sentry.incident",
  3005. "nullable": false
  3006. }
  3007. },
  3008. "model": "sentry.incidenttrigger",
  3009. "relocation_dependencies": [],
  3010. "relocation_scope": "Organization",
  3011. "silos": [
  3012. "Region"
  3013. ],
  3014. "table_name": "sentry_incidenttrigger",
  3015. "uniques": [
  3016. [
  3017. "alert_rule_trigger",
  3018. "incident"
  3019. ]
  3020. ]
  3021. },
  3022. "sentry.integration": {
  3023. "dangling": false,
  3024. "foreign_keys": {},
  3025. "model": "sentry.integration",
  3026. "relocation_dependencies": [],
  3027. "relocation_scope": "Global",
  3028. "silos": [
  3029. "Control"
  3030. ],
  3031. "table_name": "sentry_integration",
  3032. "uniques": [
  3033. [
  3034. "external_id",
  3035. "provider"
  3036. ]
  3037. ]
  3038. },
  3039. "sentry.integrationexternalproject": {
  3040. "dangling": false,
  3041. "foreign_keys": {
  3042. "organization_integration_id": {
  3043. "kind": "ImplicitForeignKey",
  3044. "model": "sentry.organizationintegration",
  3045. "nullable": false
  3046. }
  3047. },
  3048. "model": "sentry.integrationexternalproject",
  3049. "relocation_dependencies": [],
  3050. "relocation_scope": "Excluded",
  3051. "silos": [
  3052. "Control"
  3053. ],
  3054. "table_name": "sentry_integrationexternalproject",
  3055. "uniques": [
  3056. [
  3057. "external_id",
  3058. "organization_integration_id"
  3059. ]
  3060. ]
  3061. },
  3062. "sentry.integrationfeature": {
  3063. "dangling": false,
  3064. "foreign_keys": {},
  3065. "model": "sentry.integrationfeature",
  3066. "relocation_dependencies": [],
  3067. "relocation_scope": "Excluded",
  3068. "silos": [
  3069. "Control"
  3070. ],
  3071. "table_name": "sentry_integrationfeature",
  3072. "uniques": [
  3073. [
  3074. "feature",
  3075. "target_id",
  3076. "target_type"
  3077. ]
  3078. ]
  3079. },
  3080. "sentry.latestappconnectbuildscheck": {
  3081. "dangling": false,
  3082. "foreign_keys": {
  3083. "project": {
  3084. "kind": "FlexibleForeignKey",
  3085. "model": "sentry.project",
  3086. "nullable": false
  3087. }
  3088. },
  3089. "model": "sentry.latestappconnectbuildscheck",
  3090. "relocation_dependencies": [],
  3091. "relocation_scope": "Excluded",
  3092. "silos": [
  3093. "Region"
  3094. ],
  3095. "table_name": "sentry_latestappconnectbuildscheck",
  3096. "uniques": [
  3097. [
  3098. "project",
  3099. "source_id"
  3100. ]
  3101. ]
  3102. },
  3103. "sentry.latestreporeleaseenvironment": {
  3104. "dangling": false,
  3105. "foreign_keys": {
  3106. "commit_id": {
  3107. "kind": "ImplicitForeignKey",
  3108. "model": "sentry.commit",
  3109. "nullable": true
  3110. },
  3111. "deploy_id": {
  3112. "kind": "ImplicitForeignKey",
  3113. "model": "sentry.deploy",
  3114. "nullable": true
  3115. },
  3116. "environment_id": {
  3117. "kind": "ImplicitForeignKey",
  3118. "model": "sentry.environment",
  3119. "nullable": false
  3120. },
  3121. "release_id": {
  3122. "kind": "ImplicitForeignKey",
  3123. "model": "sentry.release",
  3124. "nullable": false
  3125. },
  3126. "repository_id": {
  3127. "kind": "ImplicitForeignKey",
  3128. "model": "sentry.repository",
  3129. "nullable": false
  3130. }
  3131. },
  3132. "model": "sentry.latestreporeleaseenvironment",
  3133. "relocation_dependencies": [],
  3134. "relocation_scope": "Excluded",
  3135. "silos": [
  3136. "Region"
  3137. ],
  3138. "table_name": "sentry_latestrelease",
  3139. "uniques": [
  3140. [
  3141. "environment_id",
  3142. "repository_id"
  3143. ]
  3144. ]
  3145. },
  3146. "sentry.lostpasswordhash": {
  3147. "dangling": false,
  3148. "foreign_keys": {
  3149. "user": {
  3150. "kind": "FlexibleForeignKey",
  3151. "model": "sentry.user",
  3152. "nullable": false
  3153. }
  3154. },
  3155. "model": "sentry.lostpasswordhash",
  3156. "relocation_dependencies": [],
  3157. "relocation_scope": "Excluded",
  3158. "silos": [
  3159. "Control"
  3160. ],
  3161. "table_name": "sentry_lostpasswordhash",
  3162. "uniques": [
  3163. [
  3164. "user"
  3165. ]
  3166. ]
  3167. },
  3168. "sentry.metricskeyindexer": {
  3169. "dangling": false,
  3170. "foreign_keys": {},
  3171. "model": "sentry.metricskeyindexer",
  3172. "relocation_dependencies": [],
  3173. "relocation_scope": "Excluded",
  3174. "silos": [
  3175. "Region"
  3176. ],
  3177. "table_name": "sentry_metricskeyindexer",
  3178. "uniques": [
  3179. [
  3180. "string"
  3181. ]
  3182. ]
  3183. },
  3184. "sentry.monitor": {
  3185. "dangling": false,
  3186. "foreign_keys": {
  3187. "organization_id": {
  3188. "kind": "ImplicitForeignKey",
  3189. "model": "sentry.organization",
  3190. "nullable": false
  3191. },
  3192. "owner_user_id": {
  3193. "kind": "HybridCloudForeignKey",
  3194. "model": "sentry.user",
  3195. "nullable": true
  3196. },
  3197. "project_id": {
  3198. "kind": "ImplicitForeignKey",
  3199. "model": "sentry.project",
  3200. "nullable": false
  3201. }
  3202. },
  3203. "model": "sentry.monitor",
  3204. "relocation_dependencies": [],
  3205. "relocation_scope": "Organization",
  3206. "silos": [
  3207. "Region"
  3208. ],
  3209. "table_name": "sentry_monitor",
  3210. "uniques": [
  3211. [
  3212. "guid"
  3213. ],
  3214. [
  3215. "project_id",
  3216. "slug"
  3217. ]
  3218. ]
  3219. },
  3220. "sentry.monitorcheckin": {
  3221. "dangling": false,
  3222. "foreign_keys": {
  3223. "location": {
  3224. "kind": "FlexibleForeignKey",
  3225. "model": "sentry.monitorlocation",
  3226. "nullable": true
  3227. },
  3228. "monitor": {
  3229. "kind": "FlexibleForeignKey",
  3230. "model": "sentry.monitor",
  3231. "nullable": false
  3232. },
  3233. "monitor_environment": {
  3234. "kind": "FlexibleForeignKey",
  3235. "model": "sentry.monitorenvironment",
  3236. "nullable": true
  3237. },
  3238. "project_id": {
  3239. "kind": "ImplicitForeignKey",
  3240. "model": "sentry.project",
  3241. "nullable": false
  3242. }
  3243. },
  3244. "model": "sentry.monitorcheckin",
  3245. "relocation_dependencies": [],
  3246. "relocation_scope": "Excluded",
  3247. "silos": [
  3248. "Region"
  3249. ],
  3250. "table_name": "sentry_monitorcheckin",
  3251. "uniques": [
  3252. [
  3253. "guid"
  3254. ]
  3255. ]
  3256. },
  3257. "sentry.monitorenvbrokendetection": {
  3258. "dangling": false,
  3259. "foreign_keys": {
  3260. "monitor_incident": {
  3261. "kind": "FlexibleForeignKey",
  3262. "model": "sentry.monitorincident",
  3263. "nullable": false
  3264. }
  3265. },
  3266. "model": "sentry.monitorenvbrokendetection",
  3267. "relocation_dependencies": [],
  3268. "relocation_scope": "Excluded",
  3269. "silos": [
  3270. "Region"
  3271. ],
  3272. "table_name": "sentry_monitorenvbrokendetection",
  3273. "uniques": []
  3274. },
  3275. "sentry.monitorenvironment": {
  3276. "dangling": false,
  3277. "foreign_keys": {
  3278. "environment_id": {
  3279. "kind": "ImplicitForeignKey",
  3280. "model": "sentry.environment",
  3281. "nullable": false
  3282. },
  3283. "monitor": {
  3284. "kind": "FlexibleForeignKey",
  3285. "model": "sentry.monitor",
  3286. "nullable": false
  3287. }
  3288. },
  3289. "model": "sentry.monitorenvironment",
  3290. "relocation_dependencies": [],
  3291. "relocation_scope": "Excluded",
  3292. "silos": [
  3293. "Region"
  3294. ],
  3295. "table_name": "sentry_monitorenvironment",
  3296. "uniques": [
  3297. [
  3298. "environment_id",
  3299. "monitor"
  3300. ]
  3301. ]
  3302. },
  3303. "sentry.monitorincident": {
  3304. "dangling": false,
  3305. "foreign_keys": {
  3306. "monitor": {
  3307. "kind": "FlexibleForeignKey",
  3308. "model": "sentry.monitor",
  3309. "nullable": false
  3310. },
  3311. "monitor_environment": {
  3312. "kind": "FlexibleForeignKey",
  3313. "model": "sentry.monitorenvironment",
  3314. "nullable": false
  3315. },
  3316. "resolving_checkin": {
  3317. "kind": "FlexibleForeignKey",
  3318. "model": "sentry.monitorcheckin",
  3319. "nullable": true
  3320. },
  3321. "starting_checkin": {
  3322. "kind": "FlexibleForeignKey",
  3323. "model": "sentry.monitorcheckin",
  3324. "nullable": true
  3325. }
  3326. },
  3327. "model": "sentry.monitorincident",
  3328. "relocation_dependencies": [],
  3329. "relocation_scope": "Excluded",
  3330. "silos": [
  3331. "Region"
  3332. ],
  3333. "table_name": "sentry_monitorincident",
  3334. "uniques": [
  3335. [
  3336. "monitor_environment_id"
  3337. ]
  3338. ]
  3339. },
  3340. "sentry.monitorlocation": {
  3341. "dangling": false,
  3342. "foreign_keys": {},
  3343. "model": "sentry.monitorlocation",
  3344. "relocation_dependencies": [],
  3345. "relocation_scope": "Excluded",
  3346. "silos": [
  3347. "Region"
  3348. ],
  3349. "table_name": "sentry_monitorlocation",
  3350. "uniques": [
  3351. [
  3352. "guid"
  3353. ]
  3354. ]
  3355. },
  3356. "sentry.neglectedrule": {
  3357. "dangling": false,
  3358. "foreign_keys": {
  3359. "organization": {
  3360. "kind": "FlexibleForeignKey",
  3361. "model": "sentry.organization",
  3362. "nullable": false
  3363. },
  3364. "rule": {
  3365. "kind": "FlexibleForeignKey",
  3366. "model": "sentry.rule",
  3367. "nullable": false
  3368. }
  3369. },
  3370. "model": "sentry.neglectedrule",
  3371. "relocation_dependencies": [],
  3372. "relocation_scope": "Organization",
  3373. "silos": [
  3374. "Region"
  3375. ],
  3376. "table_name": "sentry_neglectedrule",
  3377. "uniques": []
  3378. },
  3379. "sentry.notificationaction": {
  3380. "dangling": false,
  3381. "foreign_keys": {
  3382. "integration_id": {
  3383. "kind": "HybridCloudForeignKey",
  3384. "model": "sentry.integration",
  3385. "nullable": true
  3386. },
  3387. "organization": {
  3388. "kind": "FlexibleForeignKey",
  3389. "model": "sentry.organization",
  3390. "nullable": false
  3391. },
  3392. "sentry_app_id": {
  3393. "kind": "HybridCloudForeignKey",
  3394. "model": "sentry.sentryapp",
  3395. "nullable": true
  3396. }
  3397. },
  3398. "model": "sentry.notificationaction",
  3399. "relocation_dependencies": [],
  3400. "relocation_scope": [
  3401. "Organization",
  3402. "Global"
  3403. ],
  3404. "silos": [
  3405. "Region"
  3406. ],
  3407. "table_name": "sentry_notificationaction",
  3408. "uniques": []
  3409. },
  3410. "sentry.notificationactionproject": {
  3411. "dangling": false,
  3412. "foreign_keys": {
  3413. "action": {
  3414. "kind": "FlexibleForeignKey",
  3415. "model": "sentry.notificationaction",
  3416. "nullable": false
  3417. },
  3418. "project": {
  3419. "kind": "FlexibleForeignKey",
  3420. "model": "sentry.project",
  3421. "nullable": false
  3422. }
  3423. },
  3424. "model": "sentry.notificationactionproject",
  3425. "relocation_dependencies": [],
  3426. "relocation_scope": [
  3427. "Organization",
  3428. "Global"
  3429. ],
  3430. "silos": [
  3431. "Region"
  3432. ],
  3433. "table_name": "sentry_notificationactionproject",
  3434. "uniques": []
  3435. },
  3436. "sentry.notificationmessage": {
  3437. "dangling": false,
  3438. "foreign_keys": {
  3439. "incident": {
  3440. "kind": "FlexibleForeignKey",
  3441. "model": "sentry.incident",
  3442. "nullable": true
  3443. },
  3444. "rule_fire_history": {
  3445. "kind": "FlexibleForeignKey",
  3446. "model": "sentry.rulefirehistory",
  3447. "nullable": true
  3448. },
  3449. "trigger_action": {
  3450. "kind": "FlexibleForeignKey",
  3451. "model": "sentry.alertruletriggeraction",
  3452. "nullable": true
  3453. }
  3454. },
  3455. "model": "sentry.notificationmessage",
  3456. "relocation_dependencies": [],
  3457. "relocation_scope": "Excluded",
  3458. "silos": [
  3459. "Region"
  3460. ],
  3461. "table_name": "sentry_notificationmessage",
  3462. "uniques": [
  3463. [
  3464. "incident",
  3465. "trigger_action"
  3466. ],
  3467. [
  3468. "rule_action_uuid",
  3469. "rule_fire_history"
  3470. ]
  3471. ]
  3472. },
  3473. "sentry.notificationsettingoption": {
  3474. "dangling": false,
  3475. "foreign_keys": {
  3476. "team_id": {
  3477. "kind": "HybridCloudForeignKey",
  3478. "model": "sentry.team",
  3479. "nullable": true
  3480. },
  3481. "user": {
  3482. "kind": "FlexibleForeignKey",
  3483. "model": "sentry.user",
  3484. "nullable": true
  3485. }
  3486. },
  3487. "model": "sentry.notificationsettingoption",
  3488. "relocation_dependencies": [],
  3489. "relocation_scope": "Excluded",
  3490. "silos": [
  3491. "Control"
  3492. ],
  3493. "table_name": "sentry_notificationsettingoption",
  3494. "uniques": [
  3495. [
  3496. "scope_identifier",
  3497. "scope_type",
  3498. "team_id",
  3499. "type",
  3500. "user_id"
  3501. ]
  3502. ]
  3503. },
  3504. "sentry.notificationsettingprovider": {
  3505. "dangling": false,
  3506. "foreign_keys": {
  3507. "team_id": {
  3508. "kind": "HybridCloudForeignKey",
  3509. "model": "sentry.team",
  3510. "nullable": true
  3511. },
  3512. "user": {
  3513. "kind": "FlexibleForeignKey",
  3514. "model": "sentry.user",
  3515. "nullable": true
  3516. }
  3517. },
  3518. "model": "sentry.notificationsettingprovider",
  3519. "relocation_dependencies": [],
  3520. "relocation_scope": "Excluded",
  3521. "silos": [
  3522. "Control"
  3523. ],
  3524. "table_name": "sentry_notificationsettingprovider",
  3525. "uniques": [
  3526. [
  3527. "provider",
  3528. "scope_identifier",
  3529. "scope_type",
  3530. "team_id",
  3531. "type",
  3532. "user_id"
  3533. ]
  3534. ]
  3535. },
  3536. "sentry.option": {
  3537. "dangling": false,
  3538. "foreign_keys": {},
  3539. "model": "sentry.option",
  3540. "relocation_dependencies": [],
  3541. "relocation_scope": "Config",
  3542. "silos": [
  3543. "Region"
  3544. ],
  3545. "table_name": "sentry_option",
  3546. "uniques": [
  3547. [
  3548. "key"
  3549. ]
  3550. ]
  3551. },
  3552. "sentry.organization": {
  3553. "dangling": false,
  3554. "foreign_keys": {},
  3555. "model": "sentry.organization",
  3556. "relocation_dependencies": [],
  3557. "relocation_scope": "Organization",
  3558. "silos": [
  3559. "Region"
  3560. ],
  3561. "table_name": "sentry_organization",
  3562. "uniques": [
  3563. [
  3564. "slug"
  3565. ]
  3566. ]
  3567. },
  3568. "sentry.organizationaccessrequest": {
  3569. "dangling": false,
  3570. "foreign_keys": {
  3571. "member": {
  3572. "kind": "FlexibleForeignKey",
  3573. "model": "sentry.organizationmember",
  3574. "nullable": false
  3575. },
  3576. "requester_id": {
  3577. "kind": "HybridCloudForeignKey",
  3578. "model": "sentry.user",
  3579. "nullable": true
  3580. },
  3581. "team": {
  3582. "kind": "FlexibleForeignKey",
  3583. "model": "sentry.team",
  3584. "nullable": false
  3585. }
  3586. },
  3587. "model": "sentry.organizationaccessrequest",
  3588. "relocation_dependencies": [],
  3589. "relocation_scope": "Organization",
  3590. "silos": [
  3591. "Region"
  3592. ],
  3593. "table_name": "sentry_organizationaccessrequest",
  3594. "uniques": [
  3595. [
  3596. "member",
  3597. "team"
  3598. ]
  3599. ]
  3600. },
  3601. "sentry.organizationavatar": {
  3602. "dangling": false,
  3603. "foreign_keys": {
  3604. "file_id": {
  3605. "kind": "ImplicitForeignKey",
  3606. "model": "sentry.file",
  3607. "nullable": true
  3608. },
  3609. "organization": {
  3610. "kind": "FlexibleForeignKey",
  3611. "model": "sentry.organization",
  3612. "nullable": false
  3613. }
  3614. },
  3615. "model": "sentry.organizationavatar",
  3616. "relocation_dependencies": [],
  3617. "relocation_scope": "Excluded",
  3618. "silos": [
  3619. "Region"
  3620. ],
  3621. "table_name": "sentry_organizationavatar",
  3622. "uniques": [
  3623. [
  3624. "file_id"
  3625. ],
  3626. [
  3627. "ident"
  3628. ],
  3629. [
  3630. "organization"
  3631. ]
  3632. ]
  3633. },
  3634. "sentry.organizationintegration": {
  3635. "dangling": false,
  3636. "foreign_keys": {
  3637. "integration": {
  3638. "kind": "FlexibleForeignKey",
  3639. "model": "sentry.integration",
  3640. "nullable": false
  3641. },
  3642. "organization_id": {
  3643. "kind": "HybridCloudForeignKey",
  3644. "model": "sentry.organization",
  3645. "nullable": false
  3646. }
  3647. },
  3648. "model": "sentry.organizationintegration",
  3649. "relocation_dependencies": [],
  3650. "relocation_scope": "Global",
  3651. "silos": [
  3652. "Control"
  3653. ],
  3654. "table_name": "sentry_organizationintegration",
  3655. "uniques": [
  3656. [
  3657. "integration",
  3658. "organization_id"
  3659. ]
  3660. ]
  3661. },
  3662. "sentry.organizationmapping": {
  3663. "dangling": false,
  3664. "foreign_keys": {
  3665. "organization_id": {
  3666. "kind": "ImplicitForeignKey",
  3667. "model": "sentry.organization",
  3668. "nullable": false
  3669. }
  3670. },
  3671. "model": "sentry.organizationmapping",
  3672. "relocation_dependencies": [],
  3673. "relocation_scope": "Excluded",
  3674. "silos": [
  3675. "Control"
  3676. ],
  3677. "table_name": "sentry_organizationmapping",
  3678. "uniques": [
  3679. [
  3680. "organization_id"
  3681. ],
  3682. [
  3683. "slug"
  3684. ]
  3685. ]
  3686. },
  3687. "sentry.organizationmember": {
  3688. "dangling": false,
  3689. "foreign_keys": {
  3690. "inviter_id": {
  3691. "kind": "HybridCloudForeignKey",
  3692. "model": "sentry.user",
  3693. "nullable": true
  3694. },
  3695. "organization": {
  3696. "kind": "FlexibleForeignKey",
  3697. "model": "sentry.organization",
  3698. "nullable": false
  3699. },
  3700. "user_id": {
  3701. "kind": "HybridCloudForeignKey",
  3702. "model": "sentry.user",
  3703. "nullable": true
  3704. }
  3705. },
  3706. "model": "sentry.organizationmember",
  3707. "relocation_dependencies": [],
  3708. "relocation_scope": "Organization",
  3709. "silos": [
  3710. "Region"
  3711. ],
  3712. "table_name": "sentry_organizationmember",
  3713. "uniques": [
  3714. [
  3715. "email",
  3716. "organization"
  3717. ],
  3718. [
  3719. "organization",
  3720. "user_id"
  3721. ],
  3722. [
  3723. "token"
  3724. ]
  3725. ]
  3726. },
  3727. "sentry.organizationmembermapping": {
  3728. "dangling": false,
  3729. "foreign_keys": {
  3730. "inviter": {
  3731. "kind": "FlexibleForeignKey",
  3732. "model": "sentry.user",
  3733. "nullable": true
  3734. },
  3735. "organization_id": {
  3736. "kind": "HybridCloudForeignKey",
  3737. "model": "sentry.organization",
  3738. "nullable": false
  3739. },
  3740. "organizationmember_id": {
  3741. "kind": "ImplicitForeignKey",
  3742. "model": "sentry.organizationmember",
  3743. "nullable": true
  3744. },
  3745. "user": {
  3746. "kind": "FlexibleForeignKey",
  3747. "model": "sentry.user",
  3748. "nullable": true
  3749. }
  3750. },
  3751. "model": "sentry.organizationmembermapping",
  3752. "relocation_dependencies": [],
  3753. "relocation_scope": "Excluded",
  3754. "silos": [
  3755. "Control"
  3756. ],
  3757. "table_name": "sentry_organizationmembermapping",
  3758. "uniques": [
  3759. [
  3760. "organization_id",
  3761. "organizationmember_id"
  3762. ]
  3763. ]
  3764. },
  3765. "sentry.organizationmemberteam": {
  3766. "dangling": false,
  3767. "foreign_keys": {
  3768. "organizationmember": {
  3769. "kind": "FlexibleForeignKey",
  3770. "model": "sentry.organizationmember",
  3771. "nullable": false
  3772. },
  3773. "team": {
  3774. "kind": "FlexibleForeignKey",
  3775. "model": "sentry.team",
  3776. "nullable": false
  3777. }
  3778. },
  3779. "model": "sentry.organizationmemberteam",
  3780. "relocation_dependencies": [],
  3781. "relocation_scope": "Organization",
  3782. "silos": [
  3783. "Region"
  3784. ],
  3785. "table_name": "sentry_organizationmember_teams",
  3786. "uniques": [
  3787. [
  3788. "organizationmember",
  3789. "team"
  3790. ]
  3791. ]
  3792. },
  3793. "sentry.organizationmemberteamreplica": {
  3794. "dangling": false,
  3795. "foreign_keys": {
  3796. "organization_id": {
  3797. "kind": "HybridCloudForeignKey",
  3798. "model": "sentry.organization",
  3799. "nullable": false
  3800. },
  3801. "organizationmember_id": {
  3802. "kind": "ImplicitForeignKey",
  3803. "model": "sentry.organizationmember",
  3804. "nullable": false
  3805. },
  3806. "organizationmemberteam_id": {
  3807. "kind": "ImplicitForeignKey",
  3808. "model": "sentry.organizationmemberteam",
  3809. "nullable": false
  3810. },
  3811. "team_id": {
  3812. "kind": "HybridCloudForeignKey",
  3813. "model": "sentry.team",
  3814. "nullable": false
  3815. }
  3816. },
  3817. "model": "sentry.organizationmemberteamreplica",
  3818. "relocation_dependencies": [],
  3819. "relocation_scope": "Excluded",
  3820. "silos": [
  3821. "Control"
  3822. ],
  3823. "table_name": "sentry_organizationmember_teamsreplica",
  3824. "uniques": [
  3825. [
  3826. "organization_id",
  3827. "organizationmember_id",
  3828. "team_id"
  3829. ]
  3830. ]
  3831. },
  3832. "sentry.organizationonboardingtask": {
  3833. "dangling": false,
  3834. "foreign_keys": {
  3835. "organization": {
  3836. "kind": "FlexibleForeignKey",
  3837. "model": "sentry.organization",
  3838. "nullable": false
  3839. },
  3840. "project": {
  3841. "kind": "FlexibleForeignKey",
  3842. "model": "sentry.project",
  3843. "nullable": true
  3844. },
  3845. "user_id": {
  3846. "kind": "HybridCloudForeignKey",
  3847. "model": "sentry.user",
  3848. "nullable": true
  3849. }
  3850. },
  3851. "model": "sentry.organizationonboardingtask",
  3852. "relocation_dependencies": [],
  3853. "relocation_scope": "Excluded",
  3854. "silos": [
  3855. "Region"
  3856. ],
  3857. "table_name": "sentry_organizationonboardingtask",
  3858. "uniques": [
  3859. [
  3860. "organization",
  3861. "task"
  3862. ]
  3863. ]
  3864. },
  3865. "sentry.organizationoption": {
  3866. "dangling": false,
  3867. "foreign_keys": {
  3868. "organization": {
  3869. "kind": "FlexibleForeignKey",
  3870. "model": "sentry.organization",
  3871. "nullable": false
  3872. }
  3873. },
  3874. "model": "sentry.organizationoption",
  3875. "relocation_dependencies": [],
  3876. "relocation_scope": "Organization",
  3877. "silos": [
  3878. "Region"
  3879. ],
  3880. "table_name": "sentry_organizationoptions",
  3881. "uniques": [
  3882. [
  3883. "key",
  3884. "organization"
  3885. ]
  3886. ]
  3887. },
  3888. "sentry.organizationslugreservation": {
  3889. "dangling": false,
  3890. "foreign_keys": {
  3891. "organization_id": {
  3892. "kind": "HybridCloudForeignKey",
  3893. "model": "sentry.organization",
  3894. "nullable": false
  3895. },
  3896. "user_id": {
  3897. "kind": "ImplicitForeignKey",
  3898. "model": "sentry.user",
  3899. "nullable": true
  3900. }
  3901. },
  3902. "model": "sentry.organizationslugreservation",
  3903. "relocation_dependencies": [],
  3904. "relocation_scope": "Excluded",
  3905. "silos": [
  3906. "Control"
  3907. ],
  3908. "table_name": "sentry_organizationslugreservation",
  3909. "uniques": [
  3910. [
  3911. "organization_id",
  3912. "reservation_type"
  3913. ],
  3914. [
  3915. "slug"
  3916. ]
  3917. ]
  3918. },
  3919. "sentry.orgauthtoken": {
  3920. "dangling": false,
  3921. "foreign_keys": {
  3922. "created_by": {
  3923. "kind": "FlexibleForeignKey",
  3924. "model": "sentry.user",
  3925. "nullable": true
  3926. },
  3927. "organization_id": {
  3928. "kind": "HybridCloudForeignKey",
  3929. "model": "sentry.organization",
  3930. "nullable": false
  3931. },
  3932. "project_last_used_id": {
  3933. "kind": "HybridCloudForeignKey",
  3934. "model": "sentry.project",
  3935. "nullable": true
  3936. }
  3937. },
  3938. "model": "sentry.orgauthtoken",
  3939. "relocation_dependencies": [],
  3940. "relocation_scope": "Organization",
  3941. "silos": [
  3942. "Control"
  3943. ],
  3944. "table_name": "sentry_orgauthtoken",
  3945. "uniques": [
  3946. [
  3947. "token_hashed"
  3948. ]
  3949. ]
  3950. },
  3951. "sentry.pendingincidentsnapshot": {
  3952. "dangling": false,
  3953. "foreign_keys": {
  3954. "incident": {
  3955. "kind": "OneToOneCascadeDeletes",
  3956. "model": "sentry.incident",
  3957. "nullable": false
  3958. }
  3959. },
  3960. "model": "sentry.pendingincidentsnapshot",
  3961. "relocation_dependencies": [],
  3962. "relocation_scope": "Organization",
  3963. "silos": [
  3964. "Region"
  3965. ],
  3966. "table_name": "sentry_pendingincidentsnapshot",
  3967. "uniques": [
  3968. [
  3969. "incident"
  3970. ]
  3971. ]
  3972. },
  3973. "sentry.perfstringindexer": {
  3974. "dangling": false,
  3975. "foreign_keys": {
  3976. "organization_id": {
  3977. "kind": "ImplicitForeignKey",
  3978. "model": "sentry.organization",
  3979. "nullable": false
  3980. }
  3981. },
  3982. "model": "sentry.perfstringindexer",
  3983. "relocation_dependencies": [],
  3984. "relocation_scope": "Excluded",
  3985. "silos": [
  3986. "Region"
  3987. ],
  3988. "table_name": "sentry_perfstringindexer",
  3989. "uniques": [
  3990. [
  3991. "organization_id",
  3992. "string",
  3993. "use_case_id"
  3994. ]
  3995. ]
  3996. },
  3997. "sentry.platformexternalissue": {
  3998. "dangling": false,
  3999. "foreign_keys": {
  4000. "group": {
  4001. "kind": "FlexibleForeignKey",
  4002. "model": "sentry.group",
  4003. "nullable": false
  4004. },
  4005. "project": {
  4006. "kind": "FlexibleForeignKey",
  4007. "model": "sentry.project",
  4008. "nullable": true
  4009. }
  4010. },
  4011. "model": "sentry.platformexternalissue",
  4012. "relocation_dependencies": [],
  4013. "relocation_scope": "Excluded",
  4014. "silos": [
  4015. "Region"
  4016. ],
  4017. "table_name": "sentry_platformexternalissue",
  4018. "uniques": [
  4019. [
  4020. "group",
  4021. "service_type"
  4022. ]
  4023. ]
  4024. },
  4025. "sentry.processingissue": {
  4026. "dangling": false,
  4027. "foreign_keys": {
  4028. "project": {
  4029. "kind": "FlexibleForeignKey",
  4030. "model": "sentry.project",
  4031. "nullable": false
  4032. }
  4033. },
  4034. "model": "sentry.processingissue",
  4035. "relocation_dependencies": [],
  4036. "relocation_scope": "Excluded",
  4037. "silos": [
  4038. "Region"
  4039. ],
  4040. "table_name": "sentry_processingissue",
  4041. "uniques": [
  4042. [
  4043. "checksum",
  4044. "project",
  4045. "type"
  4046. ]
  4047. ]
  4048. },
  4049. "sentry.proguardartifactrelease": {
  4050. "dangling": false,
  4051. "foreign_keys": {
  4052. "organization_id": {
  4053. "kind": "ImplicitForeignKey",
  4054. "model": "sentry.organization",
  4055. "nullable": false
  4056. },
  4057. "project_debug_file": {
  4058. "kind": "FlexibleForeignKey",
  4059. "model": "sentry.projectdebugfile",
  4060. "nullable": false
  4061. },
  4062. "project_id": {
  4063. "kind": "ImplicitForeignKey",
  4064. "model": "sentry.project",
  4065. "nullable": false
  4066. }
  4067. },
  4068. "model": "sentry.proguardartifactrelease",
  4069. "relocation_dependencies": [],
  4070. "relocation_scope": "Excluded",
  4071. "silos": [
  4072. "Region"
  4073. ],
  4074. "table_name": "sentry_proguardartifactrelease",
  4075. "uniques": [
  4076. [
  4077. "proguard_uuid",
  4078. "project_id",
  4079. "release_name"
  4080. ]
  4081. ]
  4082. },
  4083. "sentry.project": {
  4084. "dangling": false,
  4085. "foreign_keys": {
  4086. "organization": {
  4087. "kind": "FlexibleForeignKey",
  4088. "model": "sentry.organization",
  4089. "nullable": false
  4090. }
  4091. },
  4092. "model": "sentry.project",
  4093. "relocation_dependencies": [],
  4094. "relocation_scope": "Organization",
  4095. "silos": [
  4096. "Region"
  4097. ],
  4098. "table_name": "sentry_project",
  4099. "uniques": [
  4100. [
  4101. "organization",
  4102. "slug"
  4103. ]
  4104. ]
  4105. },
  4106. "sentry.projectartifactbundle": {
  4107. "dangling": false,
  4108. "foreign_keys": {
  4109. "artifact_bundle": {
  4110. "kind": "FlexibleForeignKey",
  4111. "model": "sentry.artifactbundle",
  4112. "nullable": false
  4113. },
  4114. "organization_id": {
  4115. "kind": "ImplicitForeignKey",
  4116. "model": "sentry.organization",
  4117. "nullable": false
  4118. },
  4119. "project_id": {
  4120. "kind": "ImplicitForeignKey",
  4121. "model": "sentry.project",
  4122. "nullable": false
  4123. }
  4124. },
  4125. "model": "sentry.projectartifactbundle",
  4126. "relocation_dependencies": [],
  4127. "relocation_scope": "Excluded",
  4128. "silos": [
  4129. "Region"
  4130. ],
  4131. "table_name": "sentry_projectartifactbundle",
  4132. "uniques": []
  4133. },
  4134. "sentry.projectbookmark": {
  4135. "dangling": false,
  4136. "foreign_keys": {
  4137. "project": {
  4138. "kind": "FlexibleForeignKey",
  4139. "model": "sentry.project",
  4140. "nullable": true
  4141. },
  4142. "user_id": {
  4143. "kind": "HybridCloudForeignKey",
  4144. "model": "sentry.user",
  4145. "nullable": false
  4146. }
  4147. },
  4148. "model": "sentry.projectbookmark",
  4149. "relocation_dependencies": [],
  4150. "relocation_scope": "Organization",
  4151. "silos": [
  4152. "Region"
  4153. ],
  4154. "table_name": "sentry_projectbookmark",
  4155. "uniques": [
  4156. [
  4157. "project",
  4158. "user_id"
  4159. ]
  4160. ]
  4161. },
  4162. "sentry.projectcodeowners": {
  4163. "dangling": false,
  4164. "foreign_keys": {
  4165. "project": {
  4166. "kind": "FlexibleForeignKey",
  4167. "model": "sentry.project",
  4168. "nullable": false
  4169. },
  4170. "repository_project_path_config": {
  4171. "kind": "FlexibleForeignKey",
  4172. "model": "sentry.repositoryprojectpathconfig",
  4173. "nullable": false
  4174. }
  4175. },
  4176. "model": "sentry.projectcodeowners",
  4177. "relocation_dependencies": [],
  4178. "relocation_scope": "Excluded",
  4179. "silos": [
  4180. "Region"
  4181. ],
  4182. "table_name": "sentry_projectcodeowners",
  4183. "uniques": [
  4184. [
  4185. "repository_project_path_config"
  4186. ]
  4187. ]
  4188. },
  4189. "sentry.projectdebugfile": {
  4190. "dangling": false,
  4191. "foreign_keys": {
  4192. "file": {
  4193. "kind": "FlexibleForeignKey",
  4194. "model": "sentry.file",
  4195. "nullable": false
  4196. },
  4197. "project_id": {
  4198. "kind": "ImplicitForeignKey",
  4199. "model": "sentry.project",
  4200. "nullable": true
  4201. }
  4202. },
  4203. "model": "sentry.projectdebugfile",
  4204. "relocation_dependencies": [],
  4205. "relocation_scope": "Excluded",
  4206. "silos": [
  4207. "Region"
  4208. ],
  4209. "table_name": "sentry_projectdsymfile",
  4210. "uniques": []
  4211. },
  4212. "sentry.projectintegration": {
  4213. "dangling": false,
  4214. "foreign_keys": {
  4215. "integration_id": {
  4216. "kind": "HybridCloudForeignKey",
  4217. "model": "sentry.integration",
  4218. "nullable": false
  4219. },
  4220. "project": {
  4221. "kind": "FlexibleForeignKey",
  4222. "model": "sentry.project",
  4223. "nullable": false
  4224. }
  4225. },
  4226. "model": "sentry.projectintegration",
  4227. "relocation_dependencies": [],
  4228. "relocation_scope": "Global",
  4229. "silos": [
  4230. "Region"
  4231. ],
  4232. "table_name": "sentry_projectintegration",
  4233. "uniques": [
  4234. [
  4235. "integration_id",
  4236. "project"
  4237. ]
  4238. ]
  4239. },
  4240. "sentry.projectkey": {
  4241. "dangling": false,
  4242. "foreign_keys": {
  4243. "project": {
  4244. "kind": "FlexibleForeignKey",
  4245. "model": "sentry.project",
  4246. "nullable": false
  4247. }
  4248. },
  4249. "model": "sentry.projectkey",
  4250. "relocation_dependencies": [],
  4251. "relocation_scope": "Organization",
  4252. "silos": [
  4253. "Region"
  4254. ],
  4255. "table_name": "sentry_projectkey",
  4256. "uniques": [
  4257. [
  4258. "public_key"
  4259. ],
  4260. [
  4261. "secret_key"
  4262. ]
  4263. ]
  4264. },
  4265. "sentry.projectoption": {
  4266. "dangling": false,
  4267. "foreign_keys": {
  4268. "project": {
  4269. "kind": "FlexibleForeignKey",
  4270. "model": "sentry.project",
  4271. "nullable": false
  4272. }
  4273. },
  4274. "model": "sentry.projectoption",
  4275. "relocation_dependencies": [],
  4276. "relocation_scope": "Organization",
  4277. "silos": [
  4278. "Region"
  4279. ],
  4280. "table_name": "sentry_projectoptions",
  4281. "uniques": [
  4282. [
  4283. "key",
  4284. "project"
  4285. ]
  4286. ]
  4287. },
  4288. "sentry.projectownership": {
  4289. "dangling": false,
  4290. "foreign_keys": {
  4291. "project": {
  4292. "kind": "FlexibleForeignKey",
  4293. "model": "sentry.project",
  4294. "nullable": false
  4295. }
  4296. },
  4297. "model": "sentry.projectownership",
  4298. "relocation_dependencies": [],
  4299. "relocation_scope": "Organization",
  4300. "silos": [
  4301. "Region"
  4302. ],
  4303. "table_name": "sentry_projectownership",
  4304. "uniques": [
  4305. [
  4306. "project"
  4307. ]
  4308. ]
  4309. },
  4310. "sentry.projectplatform": {
  4311. "dangling": false,
  4312. "foreign_keys": {
  4313. "project_id": {
  4314. "kind": "ImplicitForeignKey",
  4315. "model": "sentry.project",
  4316. "nullable": false
  4317. }
  4318. },
  4319. "model": "sentry.projectplatform",
  4320. "relocation_dependencies": [],
  4321. "relocation_scope": "Excluded",
  4322. "silos": [
  4323. "Region"
  4324. ],
  4325. "table_name": "sentry_projectplatform",
  4326. "uniques": [
  4327. [
  4328. "platform",
  4329. "project_id"
  4330. ]
  4331. ]
  4332. },
  4333. "sentry.projectredirect": {
  4334. "dangling": false,
  4335. "foreign_keys": {
  4336. "organization": {
  4337. "kind": "FlexibleForeignKey",
  4338. "model": "sentry.organization",
  4339. "nullable": false
  4340. },
  4341. "project": {
  4342. "kind": "FlexibleForeignKey",
  4343. "model": "sentry.project",
  4344. "nullable": false
  4345. }
  4346. },
  4347. "model": "sentry.projectredirect",
  4348. "relocation_dependencies": [],
  4349. "relocation_scope": "Organization",
  4350. "silos": [
  4351. "Region"
  4352. ],
  4353. "table_name": "sentry_projectredirect",
  4354. "uniques": [
  4355. [
  4356. "organization",
  4357. "redirect_slug"
  4358. ]
  4359. ]
  4360. },
  4361. "sentry.projectteam": {
  4362. "dangling": false,
  4363. "foreign_keys": {
  4364. "project": {
  4365. "kind": "FlexibleForeignKey",
  4366. "model": "sentry.project",
  4367. "nullable": false
  4368. },
  4369. "team": {
  4370. "kind": "FlexibleForeignKey",
  4371. "model": "sentry.team",
  4372. "nullable": false
  4373. }
  4374. },
  4375. "model": "sentry.projectteam",
  4376. "relocation_dependencies": [],
  4377. "relocation_scope": "Organization",
  4378. "silos": [
  4379. "Region"
  4380. ],
  4381. "table_name": "sentry_projectteam",
  4382. "uniques": [
  4383. [
  4384. "project",
  4385. "team"
  4386. ]
  4387. ]
  4388. },
  4389. "sentry.projecttransactionthreshold": {
  4390. "dangling": false,
  4391. "foreign_keys": {
  4392. "edited_by_id": {
  4393. "kind": "HybridCloudForeignKey",
  4394. "model": "sentry.user",
  4395. "nullable": true
  4396. },
  4397. "organization": {
  4398. "kind": "FlexibleForeignKey",
  4399. "model": "sentry.organization",
  4400. "nullable": false
  4401. },
  4402. "project": {
  4403. "kind": "FlexibleForeignKey",
  4404. "model": "sentry.project",
  4405. "nullable": false
  4406. }
  4407. },
  4408. "model": "sentry.projecttransactionthreshold",
  4409. "relocation_dependencies": [],
  4410. "relocation_scope": "Excluded",
  4411. "silos": [
  4412. "Region"
  4413. ],
  4414. "table_name": "sentry_projecttransactionthreshold",
  4415. "uniques": [
  4416. [
  4417. "project"
  4418. ]
  4419. ]
  4420. },
  4421. "sentry.projecttransactionthresholdoverride": {
  4422. "dangling": false,
  4423. "foreign_keys": {
  4424. "edited_by_id": {
  4425. "kind": "HybridCloudForeignKey",
  4426. "model": "sentry.user",
  4427. "nullable": true
  4428. },
  4429. "organization": {
  4430. "kind": "FlexibleForeignKey",
  4431. "model": "sentry.organization",
  4432. "nullable": false
  4433. },
  4434. "project": {
  4435. "kind": "FlexibleForeignKey",
  4436. "model": "sentry.project",
  4437. "nullable": false
  4438. }
  4439. },
  4440. "model": "sentry.projecttransactionthresholdoverride",
  4441. "relocation_dependencies": [],
  4442. "relocation_scope": "Excluded",
  4443. "silos": [
  4444. "Region"
  4445. ],
  4446. "table_name": "sentry_projecttransactionthresholdoverride",
  4447. "uniques": [
  4448. [
  4449. "project",
  4450. "transaction"
  4451. ]
  4452. ]
  4453. },
  4454. "sentry.promptsactivity": {
  4455. "dangling": false,
  4456. "foreign_keys": {
  4457. "organization_id": {
  4458. "kind": "ImplicitForeignKey",
  4459. "model": "sentry.organization",
  4460. "nullable": false
  4461. },
  4462. "project_id": {
  4463. "kind": "ImplicitForeignKey",
  4464. "model": "sentry.project",
  4465. "nullable": false
  4466. },
  4467. "user_id": {
  4468. "kind": "HybridCloudForeignKey",
  4469. "model": "sentry.user",
  4470. "nullable": false
  4471. }
  4472. },
  4473. "model": "sentry.promptsactivity",
  4474. "relocation_dependencies": [],
  4475. "relocation_scope": "Excluded",
  4476. "silos": [
  4477. "Region"
  4478. ],
  4479. "table_name": "sentry_promptsactivity",
  4480. "uniques": [
  4481. [
  4482. "feature",
  4483. "organization_id",
  4484. "project_id",
  4485. "user_id"
  4486. ]
  4487. ]
  4488. },
  4489. "sentry.pullrequest": {
  4490. "dangling": false,
  4491. "foreign_keys": {
  4492. "author": {
  4493. "kind": "FlexibleForeignKey",
  4494. "model": "sentry.commitauthor",
  4495. "nullable": true
  4496. },
  4497. "organization_id": {
  4498. "kind": "ImplicitForeignKey",
  4499. "model": "sentry.organization",
  4500. "nullable": false
  4501. },
  4502. "repository_id": {
  4503. "kind": "ImplicitForeignKey",
  4504. "model": "sentry.repository",
  4505. "nullable": false
  4506. }
  4507. },
  4508. "model": "sentry.pullrequest",
  4509. "relocation_dependencies": [],
  4510. "relocation_scope": "Excluded",
  4511. "silos": [
  4512. "Region"
  4513. ],
  4514. "table_name": "sentry_pull_request",
  4515. "uniques": [
  4516. [
  4517. "key",
  4518. "repository_id"
  4519. ]
  4520. ]
  4521. },
  4522. "sentry.pullrequestcomment": {
  4523. "dangling": false,
  4524. "foreign_keys": {
  4525. "pull_request": {
  4526. "kind": "FlexibleForeignKey",
  4527. "model": "sentry.pullrequest",
  4528. "nullable": false
  4529. }
  4530. },
  4531. "model": "sentry.pullrequestcomment",
  4532. "relocation_dependencies": [],
  4533. "relocation_scope": "Excluded",
  4534. "silos": [
  4535. "Region"
  4536. ],
  4537. "table_name": "sentry_pullrequest_comment",
  4538. "uniques": [
  4539. [
  4540. "comment_type",
  4541. "pull_request"
  4542. ]
  4543. ]
  4544. },
  4545. "sentry.pullrequestcommit": {
  4546. "dangling": false,
  4547. "foreign_keys": {
  4548. "commit": {
  4549. "kind": "FlexibleForeignKey",
  4550. "model": "sentry.commit",
  4551. "nullable": false
  4552. },
  4553. "pull_request": {
  4554. "kind": "FlexibleForeignKey",
  4555. "model": "sentry.pullrequest",
  4556. "nullable": false
  4557. }
  4558. },
  4559. "model": "sentry.pullrequestcommit",
  4560. "relocation_dependencies": [],
  4561. "relocation_scope": "Excluded",
  4562. "silos": [
  4563. "Region"
  4564. ],
  4565. "table_name": "sentry_pullrequest_commit",
  4566. "uniques": [
  4567. [
  4568. "commit",
  4569. "pull_request"
  4570. ]
  4571. ]
  4572. },
  4573. "sentry.querysubscription": {
  4574. "dangling": false,
  4575. "foreign_keys": {
  4576. "project": {
  4577. "kind": "FlexibleForeignKey",
  4578. "model": "sentry.project",
  4579. "nullable": false
  4580. },
  4581. "snuba_query": {
  4582. "kind": "FlexibleForeignKey",
  4583. "model": "sentry.snubaquery",
  4584. "nullable": true
  4585. }
  4586. },
  4587. "model": "sentry.querysubscription",
  4588. "relocation_dependencies": [],
  4589. "relocation_scope": "Organization",
  4590. "silos": [
  4591. "Region"
  4592. ],
  4593. "table_name": "sentry_querysubscription",
  4594. "uniques": [
  4595. [
  4596. "subscription_id"
  4597. ]
  4598. ]
  4599. },
  4600. "sentry.rawevent": {
  4601. "dangling": false,
  4602. "foreign_keys": {
  4603. "project": {
  4604. "kind": "FlexibleForeignKey",
  4605. "model": "sentry.project",
  4606. "nullable": false
  4607. }
  4608. },
  4609. "model": "sentry.rawevent",
  4610. "relocation_dependencies": [],
  4611. "relocation_scope": "Excluded",
  4612. "silos": [
  4613. "Region"
  4614. ],
  4615. "table_name": "sentry_rawevent",
  4616. "uniques": [
  4617. [
  4618. "event_id",
  4619. "project"
  4620. ]
  4621. ]
  4622. },
  4623. "sentry.recentsearch": {
  4624. "dangling": false,
  4625. "foreign_keys": {
  4626. "organization": {
  4627. "kind": "FlexibleForeignKey",
  4628. "model": "sentry.organization",
  4629. "nullable": false
  4630. },
  4631. "user_id": {
  4632. "kind": "HybridCloudForeignKey",
  4633. "model": "sentry.user",
  4634. "nullable": false
  4635. }
  4636. },
  4637. "model": "sentry.recentsearch",
  4638. "relocation_dependencies": [],
  4639. "relocation_scope": "Organization",
  4640. "silos": [
  4641. "Region"
  4642. ],
  4643. "table_name": "sentry_recentsearch",
  4644. "uniques": [
  4645. [
  4646. "organization",
  4647. "query_hash",
  4648. "type",
  4649. "user_id"
  4650. ]
  4651. ]
  4652. },
  4653. "sentry.regionimportchunk": {
  4654. "dangling": false,
  4655. "foreign_keys": {},
  4656. "model": "sentry.regionimportchunk",
  4657. "relocation_dependencies": [],
  4658. "relocation_scope": "Excluded",
  4659. "silos": [
  4660. "Region"
  4661. ],
  4662. "table_name": "sentry_regionimportchunk",
  4663. "uniques": [
  4664. [
  4665. "import_uuid",
  4666. "min_ordinal",
  4667. "model"
  4668. ]
  4669. ]
  4670. },
  4671. "sentry.regionoutbox": {
  4672. "dangling": false,
  4673. "foreign_keys": {},
  4674. "model": "sentry.regionoutbox",
  4675. "relocation_dependencies": [],
  4676. "relocation_scope": "Excluded",
  4677. "silos": [
  4678. "Region"
  4679. ],
  4680. "table_name": "sentry_regionoutbox",
  4681. "uniques": []
  4682. },
  4683. "sentry.regionscheduleddeletion": {
  4684. "dangling": false,
  4685. "foreign_keys": {},
  4686. "model": "sentry.regionscheduleddeletion",
  4687. "relocation_dependencies": [],
  4688. "relocation_scope": "Excluded",
  4689. "silos": [
  4690. "Region"
  4691. ],
  4692. "table_name": "sentry_regionscheduleddeletion",
  4693. "uniques": [
  4694. [
  4695. "app_label",
  4696. "model_name",
  4697. "object_id"
  4698. ],
  4699. [
  4700. "guid"
  4701. ]
  4702. ]
  4703. },
  4704. "sentry.regiontombstone": {
  4705. "dangling": false,
  4706. "foreign_keys": {},
  4707. "model": "sentry.regiontombstone",
  4708. "relocation_dependencies": [],
  4709. "relocation_scope": "Excluded",
  4710. "silos": [
  4711. "Region"
  4712. ],
  4713. "table_name": "sentry_regiontombstone",
  4714. "uniques": []
  4715. },
  4716. "sentry.regressiongroup": {
  4717. "dangling": false,
  4718. "foreign_keys": {
  4719. "project_id": {
  4720. "kind": "ImplicitForeignKey",
  4721. "model": "sentry.project",
  4722. "nullable": false
  4723. }
  4724. },
  4725. "model": "sentry.regressiongroup",
  4726. "relocation_dependencies": [],
  4727. "relocation_scope": "Excluded",
  4728. "silos": [
  4729. "Region"
  4730. ],
  4731. "table_name": "sentry_regressiongroup",
  4732. "uniques": [
  4733. [
  4734. "fingerprint",
  4735. "project_id",
  4736. "type",
  4737. "version"
  4738. ]
  4739. ]
  4740. },
  4741. "sentry.relay": {
  4742. "dangling": false,
  4743. "foreign_keys": {},
  4744. "model": "sentry.relay",
  4745. "relocation_dependencies": [],
  4746. "relocation_scope": "Config",
  4747. "silos": [
  4748. "Region"
  4749. ],
  4750. "table_name": "sentry_relay",
  4751. "uniques": [
  4752. [
  4753. "relay_id"
  4754. ]
  4755. ]
  4756. },
  4757. "sentry.relayusage": {
  4758. "dangling": false,
  4759. "foreign_keys": {},
  4760. "model": "sentry.relayusage",
  4761. "relocation_dependencies": [],
  4762. "relocation_scope": "Config",
  4763. "silos": [
  4764. "Region"
  4765. ],
  4766. "table_name": "sentry_relayusage",
  4767. "uniques": [
  4768. [
  4769. "relay_id",
  4770. "version"
  4771. ]
  4772. ]
  4773. },
  4774. "sentry.release": {
  4775. "dangling": false,
  4776. "foreign_keys": {
  4777. "organization": {
  4778. "kind": "FlexibleForeignKey",
  4779. "model": "sentry.organization",
  4780. "nullable": false
  4781. },
  4782. "owner_id": {
  4783. "kind": "HybridCloudForeignKey",
  4784. "model": "sentry.user",
  4785. "nullable": true
  4786. },
  4787. "project_id": {
  4788. "kind": "ImplicitForeignKey",
  4789. "model": "sentry.project",
  4790. "nullable": true
  4791. }
  4792. },
  4793. "model": "sentry.release",
  4794. "relocation_dependencies": [],
  4795. "relocation_scope": "Excluded",
  4796. "silos": [
  4797. "Region"
  4798. ],
  4799. "table_name": "sentry_release",
  4800. "uniques": [
  4801. [
  4802. "organization",
  4803. "version"
  4804. ]
  4805. ]
  4806. },
  4807. "sentry.releaseactivity": {
  4808. "dangling": false,
  4809. "foreign_keys": {
  4810. "release": {
  4811. "kind": "FlexibleForeignKey",
  4812. "model": "sentry.release",
  4813. "nullable": false
  4814. }
  4815. },
  4816. "model": "sentry.releaseactivity",
  4817. "relocation_dependencies": [],
  4818. "relocation_scope": "Excluded",
  4819. "silos": [
  4820. "Region"
  4821. ],
  4822. "table_name": "sentry_releaseactivity",
  4823. "uniques": []
  4824. },
  4825. "sentry.releaseartifactbundle": {
  4826. "dangling": false,
  4827. "foreign_keys": {
  4828. "artifact_bundle": {
  4829. "kind": "FlexibleForeignKey",
  4830. "model": "sentry.artifactbundle",
  4831. "nullable": false
  4832. },
  4833. "organization_id": {
  4834. "kind": "ImplicitForeignKey",
  4835. "model": "sentry.organization",
  4836. "nullable": false
  4837. }
  4838. },
  4839. "model": "sentry.releaseartifactbundle",
  4840. "relocation_dependencies": [],
  4841. "relocation_scope": "Excluded",
  4842. "silos": [
  4843. "Region"
  4844. ],
  4845. "table_name": "sentry_releaseartifactbundle",
  4846. "uniques": []
  4847. },
  4848. "sentry.releasecommit": {
  4849. "dangling": false,
  4850. "foreign_keys": {
  4851. "commit": {
  4852. "kind": "FlexibleForeignKey",
  4853. "model": "sentry.commit",
  4854. "nullable": false
  4855. },
  4856. "organization_id": {
  4857. "kind": "ImplicitForeignKey",
  4858. "model": "sentry.organization",
  4859. "nullable": false
  4860. },
  4861. "project_id": {
  4862. "kind": "ImplicitForeignKey",
  4863. "model": "sentry.project",
  4864. "nullable": true
  4865. },
  4866. "release": {
  4867. "kind": "FlexibleForeignKey",
  4868. "model": "sentry.release",
  4869. "nullable": false
  4870. }
  4871. },
  4872. "model": "sentry.releasecommit",
  4873. "relocation_dependencies": [],
  4874. "relocation_scope": "Excluded",
  4875. "silos": [
  4876. "Region"
  4877. ],
  4878. "table_name": "sentry_releasecommit",
  4879. "uniques": [
  4880. [
  4881. "commit",
  4882. "release"
  4883. ],
  4884. [
  4885. "order",
  4886. "release"
  4887. ]
  4888. ]
  4889. },
  4890. "sentry.releaseenvironment": {
  4891. "dangling": false,
  4892. "foreign_keys": {
  4893. "environment": {
  4894. "kind": "FlexibleForeignKey",
  4895. "model": "sentry.environment",
  4896. "nullable": false
  4897. },
  4898. "organization": {
  4899. "kind": "FlexibleForeignKey",
  4900. "model": "sentry.organization",
  4901. "nullable": false
  4902. },
  4903. "project_id": {
  4904. "kind": "ImplicitForeignKey",
  4905. "model": "sentry.project",
  4906. "nullable": true
  4907. },
  4908. "release": {
  4909. "kind": "FlexibleForeignKey",
  4910. "model": "sentry.release",
  4911. "nullable": false
  4912. }
  4913. },
  4914. "model": "sentry.releaseenvironment",
  4915. "relocation_dependencies": [],
  4916. "relocation_scope": "Excluded",
  4917. "silos": [
  4918. "Region"
  4919. ],
  4920. "table_name": "sentry_environmentrelease",
  4921. "uniques": [
  4922. [
  4923. "environment",
  4924. "organization",
  4925. "release"
  4926. ]
  4927. ]
  4928. },
  4929. "sentry.releasefile": {
  4930. "dangling": false,
  4931. "foreign_keys": {
  4932. "file": {
  4933. "kind": "FlexibleForeignKey",
  4934. "model": "sentry.file",
  4935. "nullable": false
  4936. },
  4937. "organization_id": {
  4938. "kind": "ImplicitForeignKey",
  4939. "model": "sentry.organization",
  4940. "nullable": false
  4941. },
  4942. "project_id": {
  4943. "kind": "ImplicitForeignKey",
  4944. "model": "sentry.project",
  4945. "nullable": true
  4946. },
  4947. "release_id": {
  4948. "kind": "ImplicitForeignKey",
  4949. "model": "sentry.release",
  4950. "nullable": false
  4951. }
  4952. },
  4953. "model": "sentry.releasefile",
  4954. "relocation_dependencies": [],
  4955. "relocation_scope": "Excluded",
  4956. "silos": [
  4957. "Region"
  4958. ],
  4959. "table_name": "sentry_releasefile",
  4960. "uniques": [
  4961. [
  4962. "ident",
  4963. "release_id"
  4964. ]
  4965. ]
  4966. },
  4967. "sentry.releaseheadcommit": {
  4968. "dangling": false,
  4969. "foreign_keys": {
  4970. "commit": {
  4971. "kind": "FlexibleForeignKey",
  4972. "model": "sentry.commit",
  4973. "nullable": false
  4974. },
  4975. "organization_id": {
  4976. "kind": "ImplicitForeignKey",
  4977. "model": "sentry.organization",
  4978. "nullable": false
  4979. },
  4980. "release": {
  4981. "kind": "FlexibleForeignKey",
  4982. "model": "sentry.release",
  4983. "nullable": false
  4984. },
  4985. "repository_id": {
  4986. "kind": "ImplicitForeignKey",
  4987. "model": "sentry.repository",
  4988. "nullable": false
  4989. }
  4990. },
  4991. "model": "sentry.releaseheadcommit",
  4992. "relocation_dependencies": [],
  4993. "relocation_scope": "Excluded",
  4994. "silos": [
  4995. "Region"
  4996. ],
  4997. "table_name": "sentry_releaseheadcommit",
  4998. "uniques": [
  4999. [
  5000. "release",
  5001. "repository_id"
  5002. ]
  5003. ]
  5004. },
  5005. "sentry.releaseproject": {
  5006. "dangling": false,
  5007. "foreign_keys": {
  5008. "project": {
  5009. "kind": "FlexibleForeignKey",
  5010. "model": "sentry.project",
  5011. "nullable": false
  5012. },
  5013. "release": {
  5014. "kind": "FlexibleForeignKey",
  5015. "model": "sentry.release",
  5016. "nullable": false
  5017. }
  5018. },
  5019. "model": "sentry.releaseproject",
  5020. "relocation_dependencies": [],
  5021. "relocation_scope": "Excluded",
  5022. "silos": [
  5023. "Region"
  5024. ],
  5025. "table_name": "sentry_release_project",
  5026. "uniques": [
  5027. [
  5028. "project",
  5029. "release"
  5030. ]
  5031. ]
  5032. },
  5033. "sentry.releaseprojectenvironment": {
  5034. "dangling": false,
  5035. "foreign_keys": {
  5036. "environment": {
  5037. "kind": "FlexibleForeignKey",
  5038. "model": "sentry.environment",
  5039. "nullable": false
  5040. },
  5041. "project": {
  5042. "kind": "FlexibleForeignKey",
  5043. "model": "sentry.project",
  5044. "nullable": false
  5045. },
  5046. "release": {
  5047. "kind": "FlexibleForeignKey",
  5048. "model": "sentry.release",
  5049. "nullable": false
  5050. }
  5051. },
  5052. "model": "sentry.releaseprojectenvironment",
  5053. "relocation_dependencies": [],
  5054. "relocation_scope": "Excluded",
  5055. "silos": [
  5056. "Region"
  5057. ],
  5058. "table_name": "sentry_releaseprojectenvironment",
  5059. "uniques": [
  5060. [
  5061. "environment",
  5062. "project",
  5063. "release"
  5064. ]
  5065. ]
  5066. },
  5067. "sentry.releasethreshold": {
  5068. "dangling": false,
  5069. "foreign_keys": {
  5070. "environment": {
  5071. "kind": "FlexibleForeignKey",
  5072. "model": "sentry.environment",
  5073. "nullable": true
  5074. },
  5075. "project": {
  5076. "kind": "FlexibleForeignKey",
  5077. "model": "sentry.project",
  5078. "nullable": false
  5079. }
  5080. },
  5081. "model": "sentry.releasethreshold",
  5082. "relocation_dependencies": [],
  5083. "relocation_scope": "Excluded",
  5084. "silos": [
  5085. "Region"
  5086. ],
  5087. "table_name": "sentry_releasethreshold",
  5088. "uniques": []
  5089. },
  5090. "sentry.relocation": {
  5091. "dangling": false,
  5092. "foreign_keys": {},
  5093. "model": "sentry.relocation",
  5094. "relocation_dependencies": [
  5095. "sentry.user"
  5096. ],
  5097. "relocation_scope": "Excluded",
  5098. "silos": [
  5099. "Region"
  5100. ],
  5101. "table_name": "sentry_relocation",
  5102. "uniques": [
  5103. [
  5104. "uuid"
  5105. ]
  5106. ]
  5107. },
  5108. "sentry.relocationfile": {
  5109. "dangling": false,
  5110. "foreign_keys": {
  5111. "file": {
  5112. "kind": "FlexibleForeignKey",
  5113. "model": "sentry.file",
  5114. "nullable": false
  5115. },
  5116. "relocation": {
  5117. "kind": "FlexibleForeignKey",
  5118. "model": "sentry.relocation",
  5119. "nullable": false
  5120. }
  5121. },
  5122. "model": "sentry.relocationfile",
  5123. "relocation_dependencies": [],
  5124. "relocation_scope": "Excluded",
  5125. "silos": [
  5126. "Region"
  5127. ],
  5128. "table_name": "sentry_relocationfile",
  5129. "uniques": [
  5130. [
  5131. "file",
  5132. "relocation"
  5133. ]
  5134. ]
  5135. },
  5136. "sentry.relocationvalidation": {
  5137. "dangling": false,
  5138. "foreign_keys": {
  5139. "relocation": {
  5140. "kind": "FlexibleForeignKey",
  5141. "model": "sentry.relocation",
  5142. "nullable": false
  5143. }
  5144. },
  5145. "model": "sentry.relocationvalidation",
  5146. "relocation_dependencies": [],
  5147. "relocation_scope": "Excluded",
  5148. "silos": [
  5149. "Region"
  5150. ],
  5151. "table_name": "sentry_relocationvalidation",
  5152. "uniques": []
  5153. },
  5154. "sentry.relocationvalidationattempt": {
  5155. "dangling": false,
  5156. "foreign_keys": {
  5157. "relocation": {
  5158. "kind": "FlexibleForeignKey",
  5159. "model": "sentry.relocation",
  5160. "nullable": false
  5161. },
  5162. "relocation_validation": {
  5163. "kind": "FlexibleForeignKey",
  5164. "model": "sentry.relocationvalidation",
  5165. "nullable": false
  5166. }
  5167. },
  5168. "model": "sentry.relocationvalidationattempt",
  5169. "relocation_dependencies": [],
  5170. "relocation_scope": "Excluded",
  5171. "silos": [
  5172. "Region"
  5173. ],
  5174. "table_name": "sentry_relocationvalidationattempt",
  5175. "uniques": [
  5176. [
  5177. "build_id"
  5178. ]
  5179. ]
  5180. },
  5181. "sentry.repository": {
  5182. "dangling": false,
  5183. "foreign_keys": {
  5184. "integration_id": {
  5185. "kind": "ImplicitForeignKey",
  5186. "model": "sentry.integration",
  5187. "nullable": true
  5188. },
  5189. "organization_id": {
  5190. "kind": "ImplicitForeignKey",
  5191. "model": "sentry.organization",
  5192. "nullable": false
  5193. }
  5194. },
  5195. "model": "sentry.repository",
  5196. "relocation_dependencies": [],
  5197. "relocation_scope": "Global",
  5198. "silos": [
  5199. "Region"
  5200. ],
  5201. "table_name": "sentry_repository",
  5202. "uniques": [
  5203. [
  5204. "external_id",
  5205. "organization_id",
  5206. "provider"
  5207. ]
  5208. ]
  5209. },
  5210. "sentry.repositoryprojectpathconfig": {
  5211. "dangling": false,
  5212. "foreign_keys": {
  5213. "integration_id": {
  5214. "kind": "ImplicitForeignKey",
  5215. "model": "sentry.integration",
  5216. "nullable": false
  5217. },
  5218. "organization_id": {
  5219. "kind": "ImplicitForeignKey",
  5220. "model": "sentry.organization",
  5221. "nullable": false
  5222. },
  5223. "organization_integration_id": {
  5224. "kind": "HybridCloudForeignKey",
  5225. "model": "sentry.organizationintegration",
  5226. "nullable": false
  5227. },
  5228. "project": {
  5229. "kind": "FlexibleForeignKey",
  5230. "model": "sentry.project",
  5231. "nullable": false
  5232. },
  5233. "repository": {
  5234. "kind": "FlexibleForeignKey",
  5235. "model": "sentry.repository",
  5236. "nullable": false
  5237. }
  5238. },
  5239. "model": "sentry.repositoryprojectpathconfig",
  5240. "relocation_dependencies": [],
  5241. "relocation_scope": "Excluded",
  5242. "silos": [
  5243. "Region"
  5244. ],
  5245. "table_name": "sentry_repositoryprojectpathconfig",
  5246. "uniques": [
  5247. [
  5248. "project",
  5249. "stack_root"
  5250. ]
  5251. ]
  5252. },
  5253. "sentry.reprocessingreport": {
  5254. "dangling": false,
  5255. "foreign_keys": {
  5256. "project": {
  5257. "kind": "FlexibleForeignKey",
  5258. "model": "sentry.project",
  5259. "nullable": false
  5260. }
  5261. },
  5262. "model": "sentry.reprocessingreport",
  5263. "relocation_dependencies": [],
  5264. "relocation_scope": "Excluded",
  5265. "silos": [
  5266. "Region"
  5267. ],
  5268. "table_name": "sentry_reprocessingreport",
  5269. "uniques": [
  5270. [
  5271. "event_id",
  5272. "project"
  5273. ]
  5274. ]
  5275. },
  5276. "sentry.rule": {
  5277. "dangling": false,
  5278. "foreign_keys": {
  5279. "environment_id": {
  5280. "kind": "ImplicitForeignKey",
  5281. "model": "sentry.environment",
  5282. "nullable": true
  5283. },
  5284. "owner_team": {
  5285. "kind": "FlexibleForeignKey",
  5286. "model": "sentry.team",
  5287. "nullable": true
  5288. },
  5289. "owner_user_id": {
  5290. "kind": "HybridCloudForeignKey",
  5291. "model": "sentry.user",
  5292. "nullable": true
  5293. },
  5294. "project": {
  5295. "kind": "FlexibleForeignKey",
  5296. "model": "sentry.project",
  5297. "nullable": false
  5298. }
  5299. },
  5300. "model": "sentry.rule",
  5301. "relocation_dependencies": [],
  5302. "relocation_scope": "Organization",
  5303. "silos": [
  5304. "Region"
  5305. ],
  5306. "table_name": "sentry_rule",
  5307. "uniques": []
  5308. },
  5309. "sentry.ruleactivity": {
  5310. "dangling": false,
  5311. "foreign_keys": {
  5312. "rule": {
  5313. "kind": "FlexibleForeignKey",
  5314. "model": "sentry.rule",
  5315. "nullable": false
  5316. },
  5317. "user_id": {
  5318. "kind": "HybridCloudForeignKey",
  5319. "model": "sentry.user",
  5320. "nullable": true
  5321. }
  5322. },
  5323. "model": "sentry.ruleactivity",
  5324. "relocation_dependencies": [],
  5325. "relocation_scope": "Organization",
  5326. "silos": [
  5327. "Region"
  5328. ],
  5329. "table_name": "sentry_ruleactivity",
  5330. "uniques": []
  5331. },
  5332. "sentry.rulefirehistory": {
  5333. "dangling": false,
  5334. "foreign_keys": {
  5335. "group": {
  5336. "kind": "FlexibleForeignKey",
  5337. "model": "sentry.group",
  5338. "nullable": false
  5339. },
  5340. "project": {
  5341. "kind": "FlexibleForeignKey",
  5342. "model": "sentry.project",
  5343. "nullable": false
  5344. },
  5345. "rule": {
  5346. "kind": "FlexibleForeignKey",
  5347. "model": "sentry.rule",
  5348. "nullable": false
  5349. }
  5350. },
  5351. "model": "sentry.rulefirehistory",
  5352. "relocation_dependencies": [],
  5353. "relocation_scope": "Excluded",
  5354. "silos": [
  5355. "Region"
  5356. ],
  5357. "table_name": "sentry_rulefirehistory",
  5358. "uniques": []
  5359. },
  5360. "sentry.rulesnooze": {
  5361. "dangling": false,
  5362. "foreign_keys": {
  5363. "alert_rule": {
  5364. "kind": "FlexibleForeignKey",
  5365. "model": "sentry.alertrule",
  5366. "nullable": true
  5367. },
  5368. "owner_id": {
  5369. "kind": "HybridCloudForeignKey",
  5370. "model": "sentry.user",
  5371. "nullable": true
  5372. },
  5373. "rule": {
  5374. "kind": "FlexibleForeignKey",
  5375. "model": "sentry.rule",
  5376. "nullable": true
  5377. },
  5378. "user_id": {
  5379. "kind": "HybridCloudForeignKey",
  5380. "model": "sentry.user",
  5381. "nullable": true
  5382. }
  5383. },
  5384. "model": "sentry.rulesnooze",
  5385. "relocation_dependencies": [],
  5386. "relocation_scope": "Organization",
  5387. "silos": [
  5388. "Region"
  5389. ],
  5390. "table_name": "sentry_rulesnooze",
  5391. "uniques": [
  5392. [
  5393. "alert_rule"
  5394. ],
  5395. [
  5396. "alert_rule",
  5397. "user_id"
  5398. ],
  5399. [
  5400. "rule"
  5401. ],
  5402. [
  5403. "rule",
  5404. "user_id"
  5405. ]
  5406. ]
  5407. },
  5408. "sentry.savedsearch": {
  5409. "dangling": false,
  5410. "foreign_keys": {
  5411. "organization": {
  5412. "kind": "FlexibleForeignKey",
  5413. "model": "sentry.organization",
  5414. "nullable": true
  5415. },
  5416. "owner_id": {
  5417. "kind": "HybridCloudForeignKey",
  5418. "model": "sentry.user",
  5419. "nullable": true
  5420. }
  5421. },
  5422. "model": "sentry.savedsearch",
  5423. "relocation_dependencies": [],
  5424. "relocation_scope": "Organization",
  5425. "silos": [
  5426. "Region"
  5427. ],
  5428. "table_name": "sentry_savedsearch",
  5429. "uniques": [
  5430. [
  5431. "is_global",
  5432. "name"
  5433. ],
  5434. [
  5435. "organization",
  5436. "owner_id",
  5437. "type"
  5438. ]
  5439. ]
  5440. },
  5441. "sentry.scheduleddeletion": {
  5442. "dangling": false,
  5443. "foreign_keys": {},
  5444. "model": "sentry.scheduleddeletion",
  5445. "relocation_dependencies": [],
  5446. "relocation_scope": "Excluded",
  5447. "silos": [
  5448. "Control"
  5449. ],
  5450. "table_name": "sentry_scheduleddeletion",
  5451. "uniques": [
  5452. [
  5453. "app_label",
  5454. "model_name",
  5455. "object_id"
  5456. ],
  5457. [
  5458. "guid"
  5459. ]
  5460. ]
  5461. },
  5462. "sentry.sentryapp": {
  5463. "dangling": false,
  5464. "foreign_keys": {
  5465. "application": {
  5466. "kind": "DefaultOneToOneField",
  5467. "model": "sentry.apiapplication",
  5468. "nullable": true
  5469. },
  5470. "creator_user": {
  5471. "kind": "FlexibleForeignKey",
  5472. "model": "sentry.user",
  5473. "nullable": true
  5474. },
  5475. "owner_id": {
  5476. "kind": "HybridCloudForeignKey",
  5477. "model": "sentry.organization",
  5478. "nullable": false
  5479. },
  5480. "proxy_user": {
  5481. "kind": "DefaultOneToOneField",
  5482. "model": "sentry.user",
  5483. "nullable": true
  5484. }
  5485. },
  5486. "model": "sentry.sentryapp",
  5487. "relocation_dependencies": [],
  5488. "relocation_scope": "Global",
  5489. "silos": [
  5490. "Control"
  5491. ],
  5492. "table_name": "sentry_sentryapp",
  5493. "uniques": [
  5494. [
  5495. "application"
  5496. ],
  5497. [
  5498. "proxy_user"
  5499. ],
  5500. [
  5501. "slug"
  5502. ]
  5503. ]
  5504. },
  5505. "sentry.sentryappavatar": {
  5506. "dangling": false,
  5507. "foreign_keys": {
  5508. "control_file_id": {
  5509. "kind": "ImplicitForeignKey",
  5510. "model": "sentry.controlfile",
  5511. "nullable": true
  5512. },
  5513. "sentry_app": {
  5514. "kind": "FlexibleForeignKey",
  5515. "model": "sentry.sentryapp",
  5516. "nullable": false
  5517. }
  5518. },
  5519. "model": "sentry.sentryappavatar",
  5520. "relocation_dependencies": [],
  5521. "relocation_scope": "Excluded",
  5522. "silos": [
  5523. "Control"
  5524. ],
  5525. "table_name": "sentry_sentryappavatar",
  5526. "uniques": [
  5527. [
  5528. "control_file_id"
  5529. ],
  5530. [
  5531. "ident"
  5532. ]
  5533. ]
  5534. },
  5535. "sentry.sentryappcomponent": {
  5536. "dangling": false,
  5537. "foreign_keys": {
  5538. "sentry_app": {
  5539. "kind": "FlexibleForeignKey",
  5540. "model": "sentry.sentryapp",
  5541. "nullable": false
  5542. }
  5543. },
  5544. "model": "sentry.sentryappcomponent",
  5545. "relocation_dependencies": [],
  5546. "relocation_scope": "Global",
  5547. "silos": [
  5548. "Control"
  5549. ],
  5550. "table_name": "sentry_sentryappcomponent",
  5551. "uniques": [
  5552. [
  5553. "uuid"
  5554. ]
  5555. ]
  5556. },
  5557. "sentry.sentryappinstallation": {
  5558. "dangling": false,
  5559. "foreign_keys": {
  5560. "api_grant": {
  5561. "kind": "DefaultOneToOneField",
  5562. "model": "sentry.apigrant",
  5563. "nullable": true
  5564. },
  5565. "api_token": {
  5566. "kind": "DefaultOneToOneField",
  5567. "model": "sentry.apitoken",
  5568. "nullable": true
  5569. },
  5570. "organization_id": {
  5571. "kind": "HybridCloudForeignKey",
  5572. "model": "sentry.organization",
  5573. "nullable": false
  5574. },
  5575. "sentry_app": {
  5576. "kind": "FlexibleForeignKey",
  5577. "model": "sentry.sentryapp",
  5578. "nullable": false
  5579. }
  5580. },
  5581. "model": "sentry.sentryappinstallation",
  5582. "relocation_dependencies": [],
  5583. "relocation_scope": "Global",
  5584. "silos": [
  5585. "Control"
  5586. ],
  5587. "table_name": "sentry_sentryappinstallation",
  5588. "uniques": [
  5589. [
  5590. "api_grant"
  5591. ],
  5592. [
  5593. "api_token"
  5594. ]
  5595. ]
  5596. },
  5597. "sentry.sentryappinstallationforprovider": {
  5598. "dangling": false,
  5599. "foreign_keys": {
  5600. "organization_id": {
  5601. "kind": "HybridCloudForeignKey",
  5602. "model": "sentry.organization",
  5603. "nullable": false
  5604. },
  5605. "sentry_app_installation": {
  5606. "kind": "FlexibleForeignKey",
  5607. "model": "sentry.sentryappinstallation",
  5608. "nullable": false
  5609. }
  5610. },
  5611. "model": "sentry.sentryappinstallationforprovider",
  5612. "relocation_dependencies": [],
  5613. "relocation_scope": "Excluded",
  5614. "silos": [
  5615. "Control"
  5616. ],
  5617. "table_name": "sentry_sentryappinstallationforprovider",
  5618. "uniques": [
  5619. [
  5620. "organization_id",
  5621. "provider"
  5622. ]
  5623. ]
  5624. },
  5625. "sentry.sentryappinstallationtoken": {
  5626. "dangling": false,
  5627. "foreign_keys": {
  5628. "api_token": {
  5629. "kind": "FlexibleForeignKey",
  5630. "model": "sentry.apitoken",
  5631. "nullable": false
  5632. },
  5633. "sentry_app_installation": {
  5634. "kind": "FlexibleForeignKey",
  5635. "model": "sentry.sentryappinstallation",
  5636. "nullable": false
  5637. }
  5638. },
  5639. "model": "sentry.sentryappinstallationtoken",
  5640. "relocation_dependencies": [],
  5641. "relocation_scope": "Excluded",
  5642. "silos": [
  5643. "Control"
  5644. ],
  5645. "table_name": "sentry_sentryappinstallationtoken",
  5646. "uniques": [
  5647. [
  5648. "api_token",
  5649. "sentry_app_installation"
  5650. ]
  5651. ]
  5652. },
  5653. "sentry.sentryfunction": {
  5654. "dangling": false,
  5655. "foreign_keys": {
  5656. "organization": {
  5657. "kind": "FlexibleForeignKey",
  5658. "model": "sentry.organization",
  5659. "nullable": false
  5660. }
  5661. },
  5662. "model": "sentry.sentryfunction",
  5663. "relocation_dependencies": [],
  5664. "relocation_scope": "Excluded",
  5665. "silos": [
  5666. "Region"
  5667. ],
  5668. "table_name": "sentry_sentryfunction",
  5669. "uniques": [
  5670. [
  5671. "external_id"
  5672. ],
  5673. [
  5674. "organization",
  5675. "slug"
  5676. ],
  5677. [
  5678. "slug"
  5679. ]
  5680. ]
  5681. },
  5682. "sentry.sentryshot": {
  5683. "dangling": false,
  5684. "foreign_keys": {
  5685. "organization_id": {
  5686. "kind": "HybridCloudForeignKey",
  5687. "model": "sentry.organization",
  5688. "nullable": false
  5689. }
  5690. },
  5691. "model": "sentry.sentryshot",
  5692. "relocation_dependencies": [],
  5693. "relocation_scope": "Excluded",
  5694. "silos": [
  5695. "Region"
  5696. ],
  5697. "table_name": "sentry_sentryshot",
  5698. "uniques": []
  5699. },
  5700. "sentry.servicehook": {
  5701. "dangling": false,
  5702. "foreign_keys": {
  5703. "application_id": {
  5704. "kind": "HybridCloudForeignKey",
  5705. "model": "sentry.apiapplication",
  5706. "nullable": true
  5707. },
  5708. "installation_id": {
  5709. "kind": "HybridCloudForeignKey",
  5710. "model": "sentry.sentryappinstallation",
  5711. "nullable": true
  5712. },
  5713. "organization_id": {
  5714. "kind": "ImplicitForeignKey",
  5715. "model": "sentry.organization",
  5716. "nullable": true
  5717. },
  5718. "project_id": {
  5719. "kind": "ImplicitForeignKey",
  5720. "model": "sentry.project",
  5721. "nullable": true
  5722. }
  5723. },
  5724. "model": "sentry.servicehook",
  5725. "relocation_dependencies": [],
  5726. "relocation_scope": "Global",
  5727. "silos": [
  5728. "Region"
  5729. ],
  5730. "table_name": "sentry_servicehook",
  5731. "uniques": [
  5732. [
  5733. "guid"
  5734. ]
  5735. ]
  5736. },
  5737. "sentry.servicehookproject": {
  5738. "dangling": false,
  5739. "foreign_keys": {
  5740. "project_id": {
  5741. "kind": "ImplicitForeignKey",
  5742. "model": "sentry.project",
  5743. "nullable": false
  5744. },
  5745. "service_hook": {
  5746. "kind": "FlexibleForeignKey",
  5747. "model": "sentry.servicehook",
  5748. "nullable": false
  5749. }
  5750. },
  5751. "model": "sentry.servicehookproject",
  5752. "relocation_dependencies": [],
  5753. "relocation_scope": "Excluded",
  5754. "silos": [
  5755. "Region"
  5756. ],
  5757. "table_name": "sentry_servicehookproject",
  5758. "uniques": [
  5759. [
  5760. "project_id",
  5761. "service_hook"
  5762. ]
  5763. ]
  5764. },
  5765. "sentry.snubaquery": {
  5766. "dangling": true,
  5767. "foreign_keys": {
  5768. "environment": {
  5769. "kind": "FlexibleForeignKey",
  5770. "model": "sentry.environment",
  5771. "nullable": true
  5772. }
  5773. },
  5774. "model": "sentry.snubaquery",
  5775. "relocation_dependencies": [
  5776. "sentry.organization",
  5777. "sentry.project"
  5778. ],
  5779. "relocation_scope": "Organization",
  5780. "silos": [
  5781. "Region"
  5782. ],
  5783. "table_name": "sentry_snubaquery",
  5784. "uniques": []
  5785. },
  5786. "sentry.snubaqueryeventtype": {
  5787. "dangling": false,
  5788. "foreign_keys": {
  5789. "snuba_query": {
  5790. "kind": "FlexibleForeignKey",
  5791. "model": "sentry.snubaquery",
  5792. "nullable": false
  5793. }
  5794. },
  5795. "model": "sentry.snubaqueryeventtype",
  5796. "relocation_dependencies": [],
  5797. "relocation_scope": "Organization",
  5798. "silos": [
  5799. "Region"
  5800. ],
  5801. "table_name": "sentry_snubaqueryeventtype",
  5802. "uniques": [
  5803. [
  5804. "snuba_query",
  5805. "type"
  5806. ]
  5807. ]
  5808. },
  5809. "sentry.stringindexer": {
  5810. "dangling": false,
  5811. "foreign_keys": {
  5812. "organization_id": {
  5813. "kind": "ImplicitForeignKey",
  5814. "model": "sentry.organization",
  5815. "nullable": false
  5816. }
  5817. },
  5818. "model": "sentry.stringindexer",
  5819. "relocation_dependencies": [],
  5820. "relocation_scope": "Excluded",
  5821. "silos": [
  5822. "Region"
  5823. ],
  5824. "table_name": "sentry_stringindexer",
  5825. "uniques": [
  5826. [
  5827. "organization_id",
  5828. "string"
  5829. ]
  5830. ]
  5831. },
  5832. "sentry.team": {
  5833. "dangling": false,
  5834. "foreign_keys": {
  5835. "organization": {
  5836. "kind": "FlexibleForeignKey",
  5837. "model": "sentry.organization",
  5838. "nullable": false
  5839. }
  5840. },
  5841. "model": "sentry.team",
  5842. "relocation_dependencies": [],
  5843. "relocation_scope": "Organization",
  5844. "silos": [
  5845. "Region"
  5846. ],
  5847. "table_name": "sentry_team",
  5848. "uniques": [
  5849. [
  5850. "organization",
  5851. "slug"
  5852. ]
  5853. ]
  5854. },
  5855. "sentry.teamkeytransaction": {
  5856. "dangling": false,
  5857. "foreign_keys": {
  5858. "organization": {
  5859. "kind": "FlexibleForeignKey",
  5860. "model": "sentry.organization",
  5861. "nullable": false
  5862. },
  5863. "project_team": {
  5864. "kind": "FlexibleForeignKey",
  5865. "model": "sentry.projectteam",
  5866. "nullable": true
  5867. }
  5868. },
  5869. "model": "sentry.teamkeytransaction",
  5870. "relocation_dependencies": [],
  5871. "relocation_scope": "Excluded",
  5872. "silos": [
  5873. "Region"
  5874. ],
  5875. "table_name": "sentry_performanceteamkeytransaction",
  5876. "uniques": [
  5877. [
  5878. "project_team",
  5879. "transaction"
  5880. ]
  5881. ]
  5882. },
  5883. "sentry.teamreplica": {
  5884. "dangling": false,
  5885. "foreign_keys": {
  5886. "organization_id": {
  5887. "kind": "HybridCloudForeignKey",
  5888. "model": "sentry.organization",
  5889. "nullable": false
  5890. },
  5891. "team_id": {
  5892. "kind": "HybridCloudForeignKey",
  5893. "model": "sentry.team",
  5894. "nullable": false
  5895. }
  5896. },
  5897. "model": "sentry.teamreplica",
  5898. "relocation_dependencies": [],
  5899. "relocation_scope": "Excluded",
  5900. "silos": [
  5901. "Control"
  5902. ],
  5903. "table_name": "sentry_teamreplica",
  5904. "uniques": [
  5905. [
  5906. "organization_id",
  5907. "slug"
  5908. ]
  5909. ]
  5910. },
  5911. "sentry.timeseriessnapshot": {
  5912. "dangling": true,
  5913. "foreign_keys": {},
  5914. "model": "sentry.timeseriessnapshot",
  5915. "relocation_dependencies": [
  5916. "sentry.incident"
  5917. ],
  5918. "relocation_scope": "Organization",
  5919. "silos": [
  5920. "Region"
  5921. ],
  5922. "table_name": "sentry_timeseriessnapshot",
  5923. "uniques": []
  5924. },
  5925. "sentry.user": {
  5926. "dangling": false,
  5927. "foreign_keys": {},
  5928. "model": "sentry.user",
  5929. "relocation_dependencies": [],
  5930. "relocation_scope": "User",
  5931. "silos": [
  5932. "Control"
  5933. ],
  5934. "table_name": "auth_user",
  5935. "uniques": [
  5936. [
  5937. "username"
  5938. ]
  5939. ]
  5940. },
  5941. "sentry.useravatar": {
  5942. "dangling": false,
  5943. "foreign_keys": {
  5944. "control_file_id": {
  5945. "kind": "ImplicitForeignKey",
  5946. "model": "sentry.controlfile",
  5947. "nullable": true
  5948. },
  5949. "user": {
  5950. "kind": "FlexibleForeignKey",
  5951. "model": "sentry.user",
  5952. "nullable": false
  5953. }
  5954. },
  5955. "model": "sentry.useravatar",
  5956. "relocation_dependencies": [],
  5957. "relocation_scope": "Excluded",
  5958. "silos": [
  5959. "Control"
  5960. ],
  5961. "table_name": "sentry_useravatar",
  5962. "uniques": [
  5963. [
  5964. "control_file_id"
  5965. ],
  5966. [
  5967. "ident"
  5968. ],
  5969. [
  5970. "user"
  5971. ]
  5972. ]
  5973. },
  5974. "sentry.useremail": {
  5975. "dangling": false,
  5976. "foreign_keys": {
  5977. "user": {
  5978. "kind": "FlexibleForeignKey",
  5979. "model": "sentry.user",
  5980. "nullable": false
  5981. }
  5982. },
  5983. "model": "sentry.useremail",
  5984. "relocation_dependencies": [
  5985. "sentry.email"
  5986. ],
  5987. "relocation_scope": "User",
  5988. "silos": [
  5989. "Control"
  5990. ],
  5991. "table_name": "sentry_useremail",
  5992. "uniques": [
  5993. [
  5994. "email",
  5995. "user"
  5996. ]
  5997. ]
  5998. },
  5999. "sentry.userip": {
  6000. "dangling": false,
  6001. "foreign_keys": {
  6002. "user": {
  6003. "kind": "FlexibleForeignKey",
  6004. "model": "sentry.user",
  6005. "nullable": false
  6006. }
  6007. },
  6008. "model": "sentry.userip",
  6009. "relocation_dependencies": [],
  6010. "relocation_scope": "Global",
  6011. "silos": [
  6012. "Control"
  6013. ],
  6014. "table_name": "sentry_userip",
  6015. "uniques": [
  6016. [
  6017. "ip_address",
  6018. "user"
  6019. ]
  6020. ]
  6021. },
  6022. "sentry.useroption": {
  6023. "dangling": false,
  6024. "foreign_keys": {
  6025. "organization_id": {
  6026. "kind": "HybridCloudForeignKey",
  6027. "model": "sentry.organization",
  6028. "nullable": true
  6029. },
  6030. "project_id": {
  6031. "kind": "HybridCloudForeignKey",
  6032. "model": "sentry.project",
  6033. "nullable": true
  6034. },
  6035. "user": {
  6036. "kind": "FlexibleForeignKey",
  6037. "model": "sentry.user",
  6038. "nullable": false
  6039. }
  6040. },
  6041. "model": "sentry.useroption",
  6042. "relocation_dependencies": [],
  6043. "relocation_scope": "User",
  6044. "silos": [
  6045. "Control"
  6046. ],
  6047. "table_name": "sentry_useroption",
  6048. "uniques": [
  6049. [
  6050. "key",
  6051. "organization_id",
  6052. "user"
  6053. ],
  6054. [
  6055. "key",
  6056. "project_id",
  6057. "user"
  6058. ]
  6059. ]
  6060. },
  6061. "sentry.userpermission": {
  6062. "dangling": false,
  6063. "foreign_keys": {
  6064. "user": {
  6065. "kind": "FlexibleForeignKey",
  6066. "model": "sentry.user",
  6067. "nullable": false
  6068. }
  6069. },
  6070. "model": "sentry.userpermission",
  6071. "relocation_dependencies": [],
  6072. "relocation_scope": "Config",
  6073. "silos": [
  6074. "Control"
  6075. ],
  6076. "table_name": "sentry_userpermission",
  6077. "uniques": [
  6078. [
  6079. "permission",
  6080. "user"
  6081. ]
  6082. ]
  6083. },
  6084. "sentry.userreport": {
  6085. "dangling": false,
  6086. "foreign_keys": {
  6087. "environment_id": {
  6088. "kind": "ImplicitForeignKey",
  6089. "model": "sentry.environment",
  6090. "nullable": true
  6091. },
  6092. "group_id": {
  6093. "kind": "ImplicitForeignKey",
  6094. "model": "sentry.group",
  6095. "nullable": true
  6096. },
  6097. "project_id": {
  6098. "kind": "ImplicitForeignKey",
  6099. "model": "sentry.project",
  6100. "nullable": false
  6101. }
  6102. },
  6103. "model": "sentry.userreport",
  6104. "relocation_dependencies": [],
  6105. "relocation_scope": "Excluded",
  6106. "silos": [
  6107. "Region"
  6108. ],
  6109. "table_name": "sentry_userreport",
  6110. "uniques": [
  6111. [
  6112. "event_id",
  6113. "project_id"
  6114. ]
  6115. ]
  6116. },
  6117. "sentry.userrole": {
  6118. "dangling": false,
  6119. "foreign_keys": {},
  6120. "model": "sentry.userrole",
  6121. "relocation_dependencies": [],
  6122. "relocation_scope": "Config",
  6123. "silos": [
  6124. "Control"
  6125. ],
  6126. "table_name": "sentry_userrole",
  6127. "uniques": [
  6128. [
  6129. "name"
  6130. ]
  6131. ]
  6132. },
  6133. "sentry.userroleuser": {
  6134. "dangling": false,
  6135. "foreign_keys": {
  6136. "role": {
  6137. "kind": "FlexibleForeignKey",
  6138. "model": "sentry.userrole",
  6139. "nullable": false
  6140. },
  6141. "user": {
  6142. "kind": "FlexibleForeignKey",
  6143. "model": "sentry.user",
  6144. "nullable": false
  6145. }
  6146. },
  6147. "model": "sentry.userroleuser",
  6148. "relocation_dependencies": [],
  6149. "relocation_scope": "Config",
  6150. "silos": [
  6151. "Control"
  6152. ],
  6153. "table_name": "sentry_userrole_users",
  6154. "uniques": []
  6155. },
  6156. "social_auth.usersocialauth": {
  6157. "dangling": false,
  6158. "foreign_keys": {
  6159. "user": {
  6160. "kind": "DefaultForeignKey",
  6161. "model": "sentry.user",
  6162. "nullable": false
  6163. }
  6164. },
  6165. "model": "social_auth.usersocialauth",
  6166. "relocation_dependencies": [],
  6167. "relocation_scope": "Excluded",
  6168. "silos": [
  6169. "Control"
  6170. ],
  6171. "table_name": "social_auth_usersocialauth",
  6172. "uniques": [
  6173. [
  6174. "provider",
  6175. "uid",
  6176. "user"
  6177. ]
  6178. ]
  6179. }
  6180. }