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
CREATE TABLE
users (
id INTEGERPRIMARY KEY GENERATED ALWAYS AS IDENTITY,
username VARCHAR(30) NOT NULL UNIQUE,
password_hash VARCHAR(60) NOT NULL
);
It would be nice to have an option (eg. dataTypeCase, could default to keywordCase value for backwards compatibility) to format the data types (integer, varchar, any other data types) as lowercase, since this is the style in the PostgreSQL docs:
CREATE TABLE
users (
id integerPRIMARY KEY GENERATED ALWAYS AS IDENTITY,
username varchar(30) NOT NULL UNIQUE,
password_hash varchar(60) NOT NULL
);