Commit 18a4c6e4 authored by Brian Hatchet's avatar Brian Hatchet :speech_balloon:

CR changes, adding table to provisioner

1 merge request!258Feat/email schema 187
Pipeline #70150301 failed with stages
in 11 minutes and 23 seconds
......@@ -1429,3 +1429,10 @@ CREATE TABLE minds.user_snapshots (
json_data text,
PRIMARY KEY (user_guid, type, key)
) WITH CLUSTERING ORDER BY (type ASC, key ASC);
CREATE TABLE minds.email_campaign_logs (
receiver_guid varint,
time_sent timestamp,
email_campaign_id text,
PRIMARY KEY (receiver_guid, time_sent)
) WITH CLUSTERING ORDER BY (time_sent desc);
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment