Skip to content

Commit

Permalink
schema fix
Browse files Browse the repository at this point in the history
had changed column names to tenantId/groupId to be consistent with other
tables but forgot to change it in key definition
  • Loading branch information
Manish Tomar committed Jun 22, 2015
1 parent 8c9d0f4 commit 82f95d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion schema/setup/control_50_servers_cache.cql
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ CREATE TABLE servers_cache (
last_update timestamp,
server_id ascii,
server_blob ascii,
PRIMARY KEY((tenant_id, group_id), last_update, server_id)
PRIMARY KEY(("tenantId", "groupId"), last_update, server_id)
) WITH CLUSTERING ORDER BY (last_update DESC, server_id ASC) AND
compaction = {
'class' : 'SizeTieredCompactionStrategy',
Expand Down

0 comments on commit 82f95d8

Please sign in to comment.