detailed.json 136 KB

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