harbor/tools/migration/db/schema/notaryserver_init.pgsql

4 lines
160 B
PL/PgSQL

CREATE DATABASE notaryserver;
CREATE USER server;
alter user server with encrypted password 'password';
GRANT ALL PRIVILEGES ON DATABASE notaryserver TO server;