summaryrefslogtreecommitdiff
path: root/devfiles
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
commit64c13e3235e32344a0c7c5febbefe802e9102ace (patch)
treed54ba5593c63b806906533b57345c39a8c344e5c /devfiles
parent46c3639530d200b70f63994d4016fae37dc2e994 (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')
-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'