Sha256: 0f189024d29857d3de5a308814806cb9bed5d29dc020c529af299aa46e79028e

Contents?: true

Size: 1.7 KB

Versions: 29

Compression:

Stored size: 1.7 KB

Contents

create keyspace Twitter with
  placement_strategy = 'org.apache.cassandra.locator.SimpleStrategy' AND
  replication_factor = 1;
use Twitter;
create column family Users with comparator = 'UTF8Type';
create column family UserAudits with comparator = 'UTF8Type';
create column family UserRelationships with 
  comparator = 'UTF8Type' and
  column_type = 'Super' and
  subcomparator = 'TimeUUIDType';
create column family Usernames with comparator = 'UTF8Type';
create column family Statuses with comparator = 'UTF8Type';
create column family StatusAudits with comparator = 'UTF8Type';
create column family StatusRelationships with 
  comparator = 'UTF8Type' and
  column_type = 'Super' and
  subcomparator = 'TimeUUIDType';
create column family Indexes with
  comparator = 'UTF8Type' and
  column_type = 'Super';
create column family TimelinishThings with
  comparator = 'BytesType';

create keyspace Multiblog with
  placement_strategy = 'org.apache.cassandra.locator.SimpleStrategy' AND
  replication_factor = 1;
use Multiblog;
create column family Blogs with comparator = 'TimeUUIDType';
create column family Comments with comparator = 'TimeUUIDType';


create keyspace MultiblogLong with
  placement_strategy = 'org.apache.cassandra.locator.SimpleStrategy' AND
  replication_factor = 1;
use MultiblogLong;
create column family Blogs with comparator = 'LongType';
create column family Comments with comparator = 'LongType';

create keyspace TypeConversions with
  placement_strategy = 'org.apache.cassandra.locator.SimpleStrategy' AND
  replication_factor = 1;
use TypeConversions;
create column family UUIDColumnConversion with comparator = TimeUUIDType;
create column family SuperUUID with comparator = TimeUUIDType and column_type = Super;

Version data entries

29 entries across 29 versions & 6 rubygems

Version Path
sessionm-cassandra-1.1.2 conf/0.7/schema.txt
sessionm-cassandra-1.1.1 conf/0.7/schema.txt
sessionm-cassandra-1.1.0 conf/0.7/schema.txt
cassandra-0.23.0 conf/0.7/schema.txt
cassandra-0.22.0 conf/0.7/schema.txt
cassandra-mavericks-0.21.1 conf/0.7/schema.txt
cassandra-0.21.0 conf/0.7/schema.txt
cassandra-0.20.0 conf/0.7/schema.txt
cassandra-0.19.0 conf/0.7/schema.txt
sessionm-cassandra-1.0.2 conf/0.7/schema.txt
cassandra-0.18.0 conf/0.7/schema.txt
sessionm-cassandra-1.0.1 conf/0.7/schema.txt
sessionm-cassandra-1.0.0 conf/0.7/schema.txt
cassandra-0.17.0 conf/0.7/schema.txt
cassandra-0.16.0 conf/0.7/schema.txt
cassandra-0.15.0 conf/0.7/schema.txt
cassandra-0.14.0 conf/0.7/schema.txt
cassandra-0.13.0 conf/0.7/schema.txt
hallelujah-cassandra-0.12.3 conf/0.7/schema.txt
mcmire-cassandra-0.12.3 conf/0.7/schema.txt