summaryrefslogtreecommitdiff
path: root/devfiles/scripts/cassandra-bootstrap.cql
diff options
context:
space:
mode:
authorJesse Morgan <jesse@jesterpm.net>2013-09-10 00:06:54 -0700
committerJesse Morgan <jesse@jesterpm.net>2013-09-10 00:06:54 -0700
commit5306005833083589d0f93b0966b458da969e5f38 (patch)
tree9779a58d78bdcf27311e2593174afb83041a21fa /devfiles/scripts/cassandra-bootstrap.cql
parent90c95d9bf125dabb5bd34954394127cf2c1bb1b1 (diff)
Adding redirect page /account.
/account redirects to either the assessment or the training page, as appropriate. This change adds the /accounts/UID backend resource, which simply stores an arbitrary json document for now.
Diffstat (limited to 'devfiles/scripts/cassandra-bootstrap.cql')
-rw-r--r--devfiles/scripts/cassandra-bootstrap.cql5
1 files changed, 5 insertions, 0 deletions
diff --git a/devfiles/scripts/cassandra-bootstrap.cql b/devfiles/scripts/cassandra-bootstrap.cql
index c7d6de8..db2e949 100644
--- a/devfiles/scripts/cassandra-bootstrap.cql
+++ b/devfiles/scripts/cassandra-bootstrap.cql
@@ -11,6 +11,11 @@ create column family strings
and comparator = 'UTF8Type'
and default_validation_class = 'UTF8Type';
+create column family accounts
+ with key_validation_class = 'UTF8Type'
+ and comparator = 'UTF8Type'
+ and default_validation_class = 'UTF8Type';
+
create column family assessments
with key_validation_class = 'UTF8Type'
and comparator = 'UTF8Type'