From b6ffacd0a670c1e3175485fe84f0c3f853a88eb0 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Sat, 31 Jan 2026 21:21:20 -0700 Subject: [PATCH] fix(cmd/sql-migrate): spell 'postgres' correctly --- cmd/sql-migrate/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/sql-migrate/main.go b/cmd/sql-migrate/main.go index ec26a6a..4f980a2 100644 --- a/cmd/sql-migrate/main.go +++ b/cmd/sql-migrate/main.go @@ -197,7 +197,7 @@ func main() { leafArgs := fsSub.Args() switch cfg.sqlCommand { - case "", "posgres", "posgresql", "pg", "psql", "plpgsql": + case "", "postgres", "postgresql", "pg", "psql", "plpgsql": cfg.sqlCommand = sqlCommandPSQL case "mariadb": cfg.sqlCommand = sqlCommandMariaDB