psql postgres
create database sb_psql;
create user sbdb with encrypted password 'sbp@$$w0rd';
grant all privileges on database sb_psql to sbdb;
CREATE EXTENSION "uuid-ossp";
SELECT uuid_generate_v4();
| Name | Name | Last commit date | ||
|---|---|---|---|---|
psql postgres
create database sb_psql;
create user sbdb with encrypted password 'sbp@$$w0rd';
grant all privileges on database sb_psql to sbdb;
CREATE EXTENSION "uuid-ossp";
SELECT uuid_generate_v4();