diff options
author | Sébastien Determe <sebastien.determe@intl.att.com> | 2019-03-04 10:45:10 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-03-04 10:45:10 +0000 |
commit | 87eaeb7dd8ac3dcbcc17a6a9632213648e35bb04 (patch) | |
tree | 88470aa751b7120175f908deaf54c114bea2d5f8 /extra | |
parent | 9ffd05ea2d1d9a05f80350464e8ce6ed9b5ca169 (diff) | |
parent | c2bcf2a333a66d401c6afe0589c117f0986a5bd2 (diff) |
Merge "Introduce new entities"
Diffstat (limited to 'extra')
-rw-r--r-- | extra/docker/clamp/docker-compose.yml | 2 | ||||
-rwxr-xr-x | extra/sql/load-sql-files-tests-automation.sh | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/extra/docker/clamp/docker-compose.yml b/extra/docker/clamp/docker-compose.yml index 0821fffa3..5daca056b 100644 --- a/extra/docker/clamp/docker-compose.yml +++ b/extra/docker/clamp/docker-compose.yml @@ -2,7 +2,7 @@ version: '2' services: db: - image: mariadb:10.1.11 + image: mariadb:10.3.12 volumes: - "/var/lib/mysql" - "../mariadb/conf1:/etc/mysql/conf.d:ro" diff --git a/extra/sql/load-sql-files-tests-automation.sh b/extra/sql/load-sql-files-tests-automation.sh index f2f75f68c..19cd516ac 100755 --- a/extra/sql/load-sql-files-tests-automation.sh +++ b/extra/sql/load-sql-files-tests-automation.sh @@ -24,5 +24,8 @@ ### cd /docker-entrypoint-initdb.d/bulkload +### Keep previous DB for now (SOON DEPRECATED) mysql -uroot -p$MYSQL_ROOT_PASSWORD -f < clds-create-db-objects.sql mysql -uroot -p$MYSQL_ROOT_PASSWORD -f < clds-stored-procedures.sql +## New model creation +mysql -uroot -p$MYSQL_ROOT_PASSWORD -f cldsdb4 < create-tables.sql |