diff options
Diffstat (limited to 'runtime/extra/sql')
-rw-r--r-- | runtime/extra/sql/bulkload/create-db.sql | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/extra/sql/bulkload/create-db.sql b/runtime/extra/sql/bulkload/create-db.sql index 5fa34ca04..a9d81d7c5 100644 --- a/runtime/extra/sql/bulkload/create-db.sql +++ b/runtime/extra/sql/bulkload/create-db.sql @@ -7,9 +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`; +CREATE DATABASE `clampacm`; +USE `clampacm`; DROP USER 'policy'; CREATE USER 'policy'; -GRANT ALL on controlloop.* to 'policy' identified by 'P01icY' with GRANT OPTION; +GRANT ALL on clampacm.* to 'policy' identified by 'P01icY' with GRANT OPTION; FLUSH PRIVILEGES; |