diff options
author | Michael Lando <ml636r@att.com> | 2017-08-22 14:42:17 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-08-22 14:42:17 +0000 |
commit | a6ae9aca9c238149bd38f8f1e637c366e432a700 (patch) | |
tree | efefc58eca51619008de4d813f4e09c78f6f7ced /openecomp-be/tools/build/scripts/onboard-db-schema-creation.sh | |
parent | ddf291ce8f27ee497dff836b8b7fe0458ffac02f (diff) | |
parent | f11464433438ff4391d8c3377471f18c407de44f (diff) |
Merge "[SDC] add script to allow onboard schema creation"
Diffstat (limited to 'openecomp-be/tools/build/scripts/onboard-db-schema-creation.sh')
-rw-r--r-- | openecomp-be/tools/build/scripts/onboard-db-schema-creation.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/openecomp-be/tools/build/scripts/onboard-db-schema-creation.sh b/openecomp-be/tools/build/scripts/onboard-db-schema-creation.sh new file mode 100644 index 0000000000..be19f6b960 --- /dev/null +++ b/openecomp-be/tools/build/scripts/onboard-db-schema-creation.sh @@ -0,0 +1,18 @@ +#!/bin/sh + + + +# Define the name of the CQL files +CASSANDRA_CQL_FILE=create_dox_db.cql +CASSANDRA_ALTER_CQL_FILE=alter_dox_db.cql + +# Generate the create schema CQL file +./generate-cassandra-init-cql.sh ./cassandra-commands.json dox no > ${CASSANDRA_CQL_FILE} +./generate-application-config-insert-cql.sh vsp.schemaTemplates ../../../tools/install/database/schemaTemplates >> ${CASSANDRA_CQL_FILE} +./generate-application-config-insert-cql.sh vsp.monitoring ../../..//tools/install/database/monitoring >> ${CASSANDRA_CQL_FILE} +./zusammen-generate-cassandra-init-cql.sh ./zusammen-cassandra-commands.json zusammen_dox no >> ${CASSANDRA_CQL_FILE} + +# Generate the alter schema CQL file +./generate-cassandra-alter-cql.sh ./cassandra-commands.json > ${CASSANDRA_ALTER_CQL_FILE} + + |