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
p.s: require to end with a semilcolon and put a quotation on table name
Example of database creation
CREATEDATABASEwhatever_db_name_on_env;
CREATEUSERmyUserName WITH PASSWORD 'whateverPasswordYouSetOnEnvironment';
ALTER ROLE myUserName SET client_encoding TO 'utf8';
ALTER ROLE myUserName SET default_transaction_isolation TO 'read committed';
ALTER ROLE myUserName SET timezone TO 'UTC';
GRANT ALL PRIVILEGES ON DATABASE whatever_db_name_on_env TO myUserName;