vscode-sql-formatter icon indicating copy to clipboard operation
vscode-sql-formatter copied to clipboard

Add options for quoting names

Open smbkr opened this issue 5 years ago • 0 comments

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
)

smbkr avatar Jun 03 '20 14:06 smbkr