summaryrefslogtreecommitdiffstats
path: root/auth/auth-cass/cass_init/init2_10.cql
diff options
context:
space:
mode:
Diffstat (limited to 'auth/auth-cass/cass_init/init2_10.cql')
-rw-r--r--auth/auth-cass/cass_init/init2_10.cql10
1 files changed, 10 insertions, 0 deletions
diff --git a/auth/auth-cass/cass_init/init2_10.cql b/auth/auth-cass/cass_init/init2_10.cql
index b7195076..21bd4b63 100644
--- a/auth/auth-cass/cass_init/init2_10.cql
+++ b/auth/auth-cass/cass_init/init2_10.cql
@@ -2,3 +2,13 @@ use authz;
alter TABLE cred ADD tag varchar;
alter TABLE future ADD target_key varchar;
alter TABLE future ADD target_date timestamp;
+CREATE INDEX future_target_key ON authz.future (target_key);
+
+CREATE TABLE notified (
+ user text,
+ target text,
+ key text,
+ last timestamp,
+ PRIMARY KEY (user,target,key)
+);
+