vscode-sql-formatter
vscode-sql-formatter copied to clipboard
Add options for quoting names
Please add an option to enforce quoting of column/table names. ie:
from:
CREATE TABLE foo (
id UUID PRIMARY KEY
)
to:
CREATE TABLE "foo" (
"id" UUID PRIMARY KEY
)