harbor/make/common/templates/notary/mysql-initdb.d/initial-notarysigner.sql

8 lines
152 B
MySQL
Raw Normal View History

2017-02-20 11:40:05 +01:00
CREATE DATABASE IF NOT EXISTS `notarysigner`;
CREATE USER "signer"@"%" IDENTIFIED BY "";
GRANT
ALL PRIVILEGES ON `notarysigner`.*
TO "signer"@"%";