Blame · Line-by-line history
0107_auto_repair_mode.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.
| 64aa989 | 1 | -- Add auto_repair_mode to per-repo automation settings. |
| 2 | -- Default 'suggest' = runs but never auto-commits (current behavior preserved). | |
| 3 | -- Owners can set to 'off' to fully disable the bot from touching their branch. | |
| 4 | ALTER TABLE repo_automation_settings | |
| 5 | ADD COLUMN IF NOT EXISTS auto_repair_mode TEXT NOT NULL DEFAULT 'suggest'; |