diff options
author | sebdet <sebastien.determe@intl.att.com> | 2019-09-10 12:25:47 +0200 |
---|---|---|
committer | sebdet <sebastien.determe@intl.att.com> | 2019-09-10 12:25:47 +0200 |
commit | f0d7a9645a2b773df5d278d3858ce36a61f23645 (patch) | |
tree | 69052ec34191afd65f8f52d6e2fc1fe289d820d0 /extra/sql/bulkload/create-db.sql | |
parent | 0387f232b4a56e98092519ccc2e0ee7985f6701c (diff) |
Remove dead code
Removal of deprecated v1 interface code, sql cleaned up as well, old
model removed from database
Issue-ID: CLAMP-487
Change-Id: I4a9f14de9ea1c1b76c522581d75cf4b011c2aa01
Signed-off-by: sebdet <sebastien.determe@intl.att.com>
Diffstat (limited to 'extra/sql/bulkload/create-db.sql')
-rw-r--r-- | extra/sql/bulkload/create-db.sql | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/extra/sql/bulkload/create-db.sql b/extra/sql/bulkload/create-db.sql new file mode 100644 index 000000000..ea4d97c1b --- /dev/null +++ b/extra/sql/bulkload/create-db.sql @@ -0,0 +1,11 @@ +# +# Create CLDS database objects (tables, etc.) +# +# +CREATE DATABASE `cldsdb4`; +USE `cldsdb4`; +DROP USER 'clds'; +CREATE USER 'clds'; +GRANT ALL on cldsdb4.* to 'clds' identified by 'sidnnd83K' with GRANT OPTION; +FLUSH PRIVILEGES; + |