From bb87c1f0285da130043fdb15e0800eb7d343a761 Mon Sep 17 00:00:00 2001 From: Jim Hahn Date: Mon, 19 Jul 2021 14:23:34 -0400 Subject: Remove operationshistory10 DB The operationshistory10 DB is no longer needed; removed from the CSIT. Issue-ID: POLICY-3419 Change-Id: Ifcf3022a9b9ca92ad3d4f00402ee4e8b141d40ba Signed-off-by: Jim Hahn --- csit/config/db/db.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csit/config/db/db.sh b/csit/config/db/db.sh index e6cd5617..1afaebc7 100755 --- a/csit/config/db/db.sh +++ b/csit/config/db/db.sh @@ -13,7 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -for db in support onap_sdk log migration operationshistory10 pooling policyadmin operationshistory controlloop +for db in migration pooling policyadmin operationshistory do mysql -uroot -p"${MYSQL_ROOT_PASSWORD}" --execute "CREATE DATABASE IF NOT EXISTS ${db};" mysql -uroot -p"${MYSQL_ROOT_PASSWORD}" --execute "GRANT ALL PRIVILEGES ON \`${db}\`.* TO '${MYSQL_USER}'@'%' ;" -- cgit