table creation columns is now not accessed via raw sql

This commit is contained in:
filipriec
2025-03-03 12:03:41 +01:00
parent a03f2697b4
commit bca2cf925d
5 changed files with 101 additions and 14 deletions

View File

@@ -19,7 +19,7 @@ message PostTableDefinitionRequest {
message ColumnDefinition {
string name = 1;
string data_type = 2;
string field_type = 2;
}
message TableDefinitionResponse {

Binary file not shown.

View File

@@ -17,7 +17,7 @@ pub struct ColumnDefinition {
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub data_type: ::prost::alloc::string::String,
pub field_type: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TableDefinitionResponse {