doc: Update system.sstables table schema description

The partition key had been renamed and its type changed some time ago,
but the doc wasn't updated. Fix it.

refs: #20998

Signed-off-by: Pavel Emelyanov <xemul@scylladb.com>

Closes scylladb/scylladb#22683
This commit is contained in:
Pavel Emelyanov
2025-02-04 16:30:21 +03:00
committed by Botond Dénes
parent 51a273401c
commit 81f7a6d97d

View File

@@ -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)
)
~~~