diff options
| author | Jesse Morgan <jesse@jesterpm.net> | 2014-02-01 11:18:41 -0800 | 
|---|---|---|
| committer | Jesse Morgan <jesse@jesterpm.net> | 2014-02-01 11:18:41 -0800 | 
| commit | 710880b563734d71e9a29276bb259d53218ea67c (patch) | |
| tree | 5645601ccd5b886e4360e208e6c37ebf6456b739 /devfiles | |
| parent | a7e5eb45f68c7c6862b3ad29361114059f5dae3f (diff) | |
Adding the feed backend support.
Diffstat (limited to 'devfiles')
| -rw-r--r-- | devfiles/scripts/cassandra-bootstrap.cql | 10 | 
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';  | 
