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

4 lines
160 B
MySQL
Raw Normal View History

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