detailed.json 134 KB

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