saving proto changes

This commit is contained in:
filipriec
2025-03-01 17:38:16 +01:00
parent a26fbdd2cf
commit f6d0920f4f

View File

@@ -10,8 +10,15 @@ service TableDefinition {
message PostTableDefinitionRequest { message PostTableDefinitionRequest {
string table_name = 1; string table_name = 1;
repeated string columns = 2; repeated ColumnDefinition columns = 2;
repeated string indexes = 3; repeated string indexes = 3;
string profile_name = 4;
optional string linked_table_name = 5;
}
message ColumnDefinition {
string name = 1;
string data_type = 2;
} }
message TableDefinitionResponse { message TableDefinitionResponse {