diff options
author | Nelson,Thomas(tn1381)(arthurdent3) <tn1381@att.com> | 2018-09-21 00:18:34 -0400 |
---|---|---|
committer | Nelson,Thomas(tn1381)(arthurdent3) <tn1381@att.com> | 2018-09-21 02:09:52 -0400 |
commit | 31420245bdd75c7955504619310582f1e4c9cbd0 (patch) | |
tree | dbbbf002c9c10657196ea5380997218e8b0eb176 /test/csit/scripts/music/cql/admin.cql | |
parent | 5d7183c56ee613b5fb3f03ff2f64a6a0ed646e86 (diff) |
Update to add Trigger
Downloading and setting up Jar for cassandra
Minor Fix
Missing ; in cql file.....
Change-Id: I15c699bac6c13982657d61fa61451f8fa16e5789
Issue-ID: MUSIC-138
Signed-off-by: Nelson,Thomas(tn1381)(arthurdent3) <tn1381@att.com>
Diffstat (limited to 'test/csit/scripts/music/cql/admin.cql')
-rw-r--r-- | test/csit/scripts/music/cql/admin.cql | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/csit/scripts/music/cql/admin.cql b/test/csit/scripts/music/cql/admin.cql index 65b4dbf93..df13f32ae 100644 --- a/test/csit/scripts/music/cql/admin.cql +++ b/test/csit/scripts/music/cql/admin.cql @@ -16,4 +16,19 @@ CREATE TABLE IF NOT EXISTS admin.keyspace_master ( 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; |