CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
Blame · Line-by-line history
0105_test_gaps_cache.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.
| 53299fb | 1 | CREATE TABLE IF NOT EXISTS test_gap_cache ( |
| 2 | id uuid PRIMARY KEY DEFAULT gen_random_uuid(), | |
| 3 | repo_id uuid NOT NULL REFERENCES repositories(id) ON DELETE CASCADE, | |
| 4 | report jsonb NOT NULL, | |
| 5 | analyzed_at timestamp DEFAULT now(), | |
| 6 | expires_at timestamp NOT NULL | |
| 7 | ); | |
| 8 | CREATE UNIQUE INDEX IF NOT EXISTS idx_test_gap_cache_repo ON test_gap_cache(repo_id); |