From 64cf8e703644f01ef1efde65c86a60ec3e377a5a Mon Sep 17 00:00:00 2001 From: "Thomas Nelson Jr (arthurdent3) tn1381@att.com" Date: Tue, 6 Mar 2018 14:27:17 -0500 Subject: Unit Tests for Sonar and Functional Test Docker Change-Id: Ib8156f44cf08f220de2a74ef8237b30deaf4df7a Issue-ID: MUSIC-40, MUSIC-32 Signed-off-by: Thomas Nelson Jr (arthurdent3) tn1381@att.com --- distribution/cassandra/music.cql | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 distribution/cassandra/music.cql (limited to 'distribution/cassandra/music.cql') diff --git a/distribution/cassandra/music.cql b/distribution/cassandra/music.cql new file mode 100644 index 00000000..d991a514 --- /dev/null +++ b/distribution/cassandra/music.cql @@ -0,0 +1,20 @@ +CREATE KEYSPACE admin + WITH REPLICATION = { + 'class' : 'SimpleStrategy', + 'replication_factor': 1 + } + AND DURABLE_WRITES = true; + +CREATE TABLE admin.keyspace_master ( + uuid uuid, + keyspace_name text, + application_name text, + is_api boolean, + password text, + username text, + is_aaf boolean, + PRIMARY KEY (uuid) +); + +CREATE USER nelson24 WITH PASSWORD ‘winman123’ SUPERUSER; +ALTER USER cassandra WITH PASSWORD ‘SomeLongRandomStringNoonewillthinkof’; -- cgit 1.2.3-korg