account_id is now being aliased cos its fk

This commit is contained in:
Priec
2026-08-12 20:45:25 +02:00
parent 49323b58d6
commit 9ebe038130
6 changed files with 11 additions and 2 deletions

View File

@@ -84,4 +84,7 @@ message TableColumn {
// Logical source column name, empty for ordinary and system columns.
string generated_from = 8;
// True when clients may offer this column in an alias rename picker.
bool renameable = 9;
}

Binary file not shown.

View File

@@ -67,6 +67,9 @@ pub struct TableColumn {
/// Logical source column name, empty for ordinary and system columns.
#[prost(string, tag = "8")]
pub generated_from: ::prost::alloc::string::String,
/// True when clients may offer this column in an alias rename picker.
#[prost(bool, tag = "9")]
pub renameable: bool,
}
/// Generated client implementations.
pub mod table_structure_service_client {