mirror of
https://github.com/bitnami/containers.git
synced 2026-03-21 15:29:05 +08:00
5 lines
162 B
SQL
5 lines
162 B
SQL
CREATE DATABASE notarysigner;
|
|
CREATE USER signer;
|
|
alter user signer with encrypted password 'password';
|
|
GRANT ALL PRIVILEGES ON DATABASE notarysigner TO signer;
|