summaryrefslogtreecommitdiffstats
path: root/csit/scripts/music/cql/admin.cql
diff options
context:
space:
mode:
authorkrishnaa96 <krishna.moorthy6@wipro.com>2021-05-05 19:44:01 +0530
committerkrishnaa96 <krishna.moorthy6@wipro.com>2021-05-06 17:01:36 +0530
commit99a779b2b42aea5eed648be065e1056ac6055d8c (patch)
treef765190999d933163fae5a5460dcf2d1aac92843 /csit/scripts/music/cql/admin.cql
parentd8b010d217720a10114f5db0efb1d95f2a65f8df (diff)
Modify CSIT scripts to use ETCD
Add healthcheck insert during the startup within the controller app Issue-ID: OPTFRA-947 Signed-off-by: krishnaa96 <krishna.moorthy6@wipro.com> Change-Id: I6b9a9bc4a02e24b10306395a92fd8830175e38df
Diffstat (limited to 'csit/scripts/music/cql/admin.cql')
-rw-r--r--csit/scripts/music/cql/admin.cql34
1 files changed, 0 insertions, 34 deletions
diff --git a/csit/scripts/music/cql/admin.cql b/csit/scripts/music/cql/admin.cql
deleted file mode 100644
index df13f32..0000000
--- a/csit/scripts/music/cql/admin.cql
+++ /dev/null
@@ -1,34 +0,0 @@
-CREATE KEYSPACE IF NOT EXISTS admin
- WITH REPLICATION = {
- 'class' : 'SimpleStrategy',
- 'replication_factor': 1
- }
- AND DURABLE_WRITES = true;
-
-CREATE TABLE IF NOT EXISTS 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 TABLE IF NOT EXISTS admin.notification_master (
- id uuid,
- current_notifier text,
- endpoint_password blob,
- endpoint_userid text,
- notify_delete_on text,
- notify_insert_on text,
- notify_to_endpoint text,
- notify_update_on text,
- notifyon text PRIMARY KEY,
- request text
-);
-
-
-
-describe keyspace admin;