pgFormatter
pgFormatter copied to clipboard
Unattractive formatting of `CREATE TYPE` columns
Input:
CREATE TYPE address_type AS (
street varchar(100),
city varchar(50),
state varchar(50),
zip_code varchar(20)
);
Output:
CREATE TYPE address_type AS (
street varchar ( 100),
city varchar(50),
state varchar(50),
zip_code varchar(20));