CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
Blame · Line-by-line history
0097_bus_factor.sql
Each line is annotated with the commit that last touched it. Click any SHA to jump to that commit and see the surrounding change.
| 1d6db4d | 1 | CREATE TABLE IF NOT EXISTS bus_factor_cache ( |
| 2 | id UUID PRIMARY KEY DEFAULT gen_random_uuid(), | |
| 3 | repository_id UUID NOT NULL REFERENCES repositories(id) ON DELETE CASCADE, | |
| 4 | analyzed_at TIMESTAMPTZ NOT NULL DEFAULT NOW(), | |
| 5 | at_risk_files JSONB NOT NULL DEFAULT '[]', | |
| 6 | total_files_analyzed INTEGER NOT NULL DEFAULT 0, | |
| 7 | UNIQUE(repository_id) | |
| 8 | ); |