removed legacy

This commit is contained in:
Priec
2026-07-29 22:00:19 +02:00
parent 4086f1c8e0
commit db827490ff
10 changed files with 16 additions and 32 deletions

View File

@@ -167,12 +167,9 @@ message StoredTableScript {
string description = 5;
// Complete allowlist of data inputs that may be exposed to this script.
repeated ScriptDependency dependencies = 6;
reserved 7;
}
message ScriptDependency {
reserved 4;
// Logical table name referenced by the script.
string target_table = 1;
// Normalized dependency kind, such as column_access or related_aggregate.
@@ -181,9 +178,9 @@ message ScriptDependency {
string column = 3;
// Aggregate operation name, such as sum, count_rows, or exists; empty for
// column_access dependencies.
string operation = 5;
string operation = 4;
// Relationship table used to match the owner row to the related collection.
string via_table = 6;
string via_table = 5;
}
// Identifies the active form row whose external Steel inputs must be hydrated.