...
Column / Label | original_id | part | data |
---|---|---|---|
Attribute | PRIMARY KEY, Partition Key | PRIMARY KEY, Partition Key | |
Data Type | text | int | blob |
Description | Verweis auf die Id in der Originals-Tabelle | Chunk des Binaries | Content des Binary-Chunks |
Log (
...
logs)
Code Block |
---|
use binaries; CREATE TABLE IF NOT EXISTS loglogs (reference_id text, timestamp timestamp, message text, PRIMARY KEY(reference_id, timestamp)); |
...