From f6d0920f4f98f36f5d733c00e393c09764b0be9a Mon Sep 17 00:00:00 2001 From: filipriec Date: Sat, 1 Mar 2025 17:38:16 +0100 Subject: [PATCH] saving proto changes --- common/proto/table_definition.proto | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/common/proto/table_definition.proto b/common/proto/table_definition.proto index adc4fe9..d160eaf 100644 --- a/common/proto/table_definition.proto +++ b/common/proto/table_definition.proto @@ -10,8 +10,15 @@ service TableDefinition { message PostTableDefinitionRequest { string table_name = 1; - repeated string columns = 2; + repeated ColumnDefinition columns = 2; 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 {