CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
Blame · Line-by-line history
0090_milestones.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.
| 85c4e13 | 1 | -- Migration 0077: Add milestone_id to issues table |
| 2 | -- The milestones table and pull_requests.milestone_id already exist (migration 0001). | |
| 3 | -- This migration adds milestone_id to the issues table. | |
| 4 | ||
| 5 | ALTER TABLE "issues" ADD COLUMN IF NOT EXISTS "milestone_id" uuid REFERENCES "milestones"("id") ON DELETE SET NULL; | |
| 6 | ||
| 7 | --> statement-breakpoint | |
| 8 | CREATE INDEX IF NOT EXISTS "issues_milestone" ON "issues" ("milestone_id"); |