detailed.json 135 KB

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