detailed.json 134 KB

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