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