go.chromium.org/luci@v0.0.0-20240309015107-7cdc2e660f33/resultdb/script/sql/spanner/2022-12-08-add-properties-to-inv-and-tr.sql (about) 1 -- `Properties` is a serialized then compressed google.protobuf.Struct that 2 -- stores structured, domain-specific properties of the invocation. 3 ALTER TABLE Invocations ADD COLUMN Properties BYTES(MAX); 4 5 -- `Properties` is a serialized then compressed google.protobuf.Struct that 6 -- stores structured, domain-specific properties of the test result. 7 ALTER TABLE TestResults ADD COLUMN Properties BYTES(MAX);