Change-Id: I327048c4dc3f0faea21fbda894cd22ed102346aa
Signed-off-by: Christopher Lott (cl778h) <clott@research.att.com>
--- /dev/null
+-- ---------------------------------------------------------------------------------------------------------------
+-- DMaaB Bus Control Web App database script for 1707 ONAP:
+-- Creates database and sets as default ("USE").
+-- Serves as the first part of a complete database script:
+-- cat dbca-create-mysql-1707-os.sql ../../dbca-common/db-scripts/dbca-ddl-mysql-1707-common.sql dbca-dml-mysql-1707-os.sql > out.sql
+-- ---------------------------------------------------------------------------------------------------------------
+
+CREATE DATABASE IF NOT EXISTS dbca_os;
+USE dbca_os;
-- in the 1707 release with data for the open-source ONAP version.
--
-- This file is suitable for deployment to Application Hosting in 1704 and later:
--- 1. This file does NOT name the database; i.e., no statements like this:
--- "use foo;"
--- 2. This file uses "--" not NOT "/* */" comment notation; i.e., no statements from mysqldump like this:
+-- This file uses "--" not NOT "/* */" comment notation; i.e., no statements from mysqldump like this:
-- /*!40101 SET character_set_client = utf8 */;
--
-- Most of the data loaded here is default data for the EP-SDK application (but much reduced).