summaryrefslogtreecommitdiff
path: root/devfiles
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
commit06dcb39ca435897b082a5d454a11ddb21f230799 (patch)
tree66bc8c14065c4b947b011c765d677b0b1e2b3c13 /devfiles
parent331f4939eb8f983b5b85663d7549e604ef485b9a (diff)
Adding the feed backend support.
Diffstat (limited to 'devfiles')
-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';