CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
Blame · Line-by-line history
0088_pr_visits.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.
| b93fc3e | 1 | CREATE TABLE IF NOT EXISTS pr_visits ( |
| 2 | pr_id UUID NOT NULL REFERENCES pull_requests(id) ON DELETE CASCADE, | |
| 3 | user_id UUID NOT NULL REFERENCES users(id) ON DELETE CASCADE, | |
| 4 | visited_at TIMESTAMPTZ NOT NULL DEFAULT NOW(), | |
| 5 | PRIMARY KEY (pr_id, user_id) | |
| 6 | ); |