CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
Blame · Line-by-line history
0083_data_region.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.
| 44f1a02 | 1 | -- Migration 0077 — per-repo data region selector. |
| 2 | -- Allows repository owners to opt into EU data residency (Frankfurt). | |
| 3 | -- Default is 'us'; 'eu' requires a Pro plan or higher (enforced in the | |
| 4 | -- repo-creation and repo-settings routes — the DB column itself is | |
| 5 | -- unconstrained so future regions (e.g. 'apac') can be added without | |
| 6 | -- a schema change). | |
| 7 | ALTER TABLE repositories ADD COLUMN IF NOT EXISTS data_region text NOT NULL DEFAULT 'us'; |