You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(db): add --db-url flag to db advisors command
Adds the --db-url flag to db advisors, matching the pattern used by
other db commands (lint, diff, dump, etc.). Switches from a dedicated
bool to the standard flag.Changed detection for --linked routing.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: cmd/db.go
+5-6Lines changed: 5 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -258,14 +258,12 @@ var (
258
258
Value: "none",
259
259
}
260
260
261
-
advisorLinkedbool
262
-
263
261
dbAdvisorsCmd=&cobra.Command{
264
262
Use: "advisors",
265
263
Short: "Checks database for security and performance issues",
266
264
Long: "Inspects the database for common security and performance issues such as missing RLS policies, unindexed foreign keys, exposed auth.users, and more.",
0 commit comments