1
0
mirror of https://github.com/goharbor/harbor.git synced 2025-03-02 10:41:59 +01:00
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;