mirror of
https://github.com/goharbor/harbor.git
synced 2025-02-10 17:01:27 +01:00
4 lines
160 B
SQL
4 lines
160 B
SQL
CREATE DATABASE notaryserver;
|
|
CREATE USER server;
|
|
alter user server with encrypted password 'password';
|
|
GRANT ALL PRIVILEGES ON DATABASE notaryserver TO server; |