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

5 lines
161 B
PL/PgSQL

CREATE DATABASE notarysigner;
CREATE USER signer;
alter user signer with encrypted password 'password';
GRANT ALL PRIVILEGES ON DATABASE notarysigner TO signer;