harbor/make/photon/db/initial-notarysigner.sql

4 lines
160 B
MySQL
Raw Normal View History

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