diff --git a/docs/dev/system_keyspace.md b/docs/dev/system_keyspace.md index f2db6e6b20..df96f31053 100644 --- a/docs/dev/system_keyspace.md +++ b/docs/dev/system_keyspace.md @@ -177,13 +177,13 @@ The "ownership" table for non-local sstables Schema: ~~~ CREATE TABLE system.sstables ( - location text, + owner uuid, generation timeuuid, format text, status text, uuid uuid, version text, - PRIMARY KEY (location, generation) + PRIMARY KEY (owner, generation) ) ~~~