15 lines
574 B
SQL
15 lines
574 B
SQL
--
|
|
-- Copyright 2015 ISRG. All rights reserved
|
|
-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
-- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
-- file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
--
|
|
-- This file defines the users of the Certificate Authority database, which is
|
|
-- logically separate from that which is utilized by the Storage Authority
|
|
-- and administrator tools.
|
|
--
|
|
|
|
-- Certificate Authority
|
|
CREATE USER `ca`@`%` IDENTIFIED BY 'password';
|
|
GRANT INSERT,DELETE,SELECT,UPDATE ON serialNumber TO `ca`@`%`;
|