diff options
author | Jim Hahn <jrh3@att.com> | 2021-07-30 13:27:07 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-07-30 13:27:07 +0000 |
commit | 4a17f8c489946a8a0b596d66dd968fd576605114 (patch) | |
tree | edff83631277787a11e10b9174fbee1892a947cf /runtime/extra | |
parent | bd1f3fabfb0f8386a559eeaeee492ce4dcdc3ad2 (diff) | |
parent | 4045d5fd60013534f4ecf85f553ae7da3e32220d (diff) |
Merge "Added endpoint for common or instance properties"
Diffstat (limited to 'runtime/extra')
-rw-r--r-- | runtime/extra/sql/bulkload/create-db.sql | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/runtime/extra/sql/bulkload/create-db.sql b/runtime/extra/sql/bulkload/create-db.sql index ea4d97c1b..5fa34ca04 100644 --- a/runtime/extra/sql/bulkload/create-db.sql +++ b/runtime/extra/sql/bulkload/create-db.sql @@ -7,5 +7,9 @@ USE `cldsdb4`; DROP USER 'clds'; CREATE USER 'clds'; GRANT ALL on cldsdb4.* to 'clds' identified by 'sidnnd83K' with GRANT OPTION; +CREATE DATABASE `controlloop`; +USE `controlloop`; +DROP USER 'policy'; +CREATE USER 'policy'; +GRANT ALL on controlloop.* to 'policy' identified by 'P01icY' with GRANT OPTION; FLUSH PRIVILEGES; - |