Sha256: 182611ae9f6247105a0f030366e5d4f600b14c161b0e6f779310b9f07aa34766

Contents?: true

Size: 1.7 KB

Versions: 4

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 Index 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

4 entries across 4 versions & 1 rubygems

Version Path
cassandra-0.11.4 conf/0.7/schema.txt
cassandra-0.11.3 conf/0.7/schema.txt
cassandra-0.11.2 conf/0.7/schema.txt
cassandra-0.11.1 conf/0.7/schema.txt