summaryrefslogtreecommitdiff
path: root/devfiles/scripts/cassandra-bootstrap.cql
diff options
context:
space:
mode:
authorJesse Morgan <jesse@jesterpm.net>2014-02-01 11:18:41 -0800
committerJesse Morgan <jesse@jesterpm.net>2014-02-01 11:18:41 -0800
commit710880b563734d71e9a29276bb259d53218ea67c (patch)
tree5645601ccd5b886e4360e208e6c37ebf6456b739 /devfiles/scripts/cassandra-bootstrap.cql
parenta7e5eb45f68c7c6862b3ad29361114059f5dae3f (diff)
Adding the feed backend support.
Diffstat (limited to 'devfiles/scripts/cassandra-bootstrap.cql')
-rw-r--r--devfiles/scripts/cassandra-bootstrap.cql10
1 files changed, 10 insertions, 0 deletions
diff --git a/devfiles/scripts/cassandra-bootstrap.cql b/devfiles/scripts/cassandra-bootstrap.cql
index db2e949..9348fcc 100644
--- a/devfiles/scripts/cassandra-bootstrap.cql
+++ b/devfiles/scripts/cassandra-bootstrap.cql
@@ -25,3 +25,13 @@ create column family training
with key_validation_class = 'UTF8Type'
and comparator = 'UTF8Type'
and default_validation_class = 'UTF8Type';
+
+create column family feedthreads
+ with key_validation_class = 'UTF8Type'
+ and comparator = 'UTF8Type'
+ and default_validation_class = 'UTF8Type';
+
+create column family feedmessages
+ with key_validation_class = 'UTF8Type'
+ and comparator = 'UTF8Type'
+ and default_validation_class = 'UTF8Type';