Files
komp_ac/common/proto/table_script.proto
2025-03-07 10:45:35 +01:00

15 lines
279 B
Protocol Buffer

syntax = "proto3";
package multieko2.table_script;
message PostTableScriptRequest {
int64 table_definition_id = 1;
string target_column = 2;
string script = 3;
string description = 4;
}
message TableScriptResponse {
int64 id = 1;
string warnings = 2;
}