legacy removed

This commit is contained in:
Filipriec
2026-09-01 12:32:59 +02:00
parent 73092a55f9
commit 494eb890d8
6 changed files with 17 additions and 171 deletions

View File

@@ -55,9 +55,6 @@ service TableDefinition {
// Copies one complete profile into a new profile without copying table data.
rpc CopyProfile(CopyProfileRequest) returns (CopyProfileResponse);
// Returns the stored rename history for column aliases in one profile.
rpc GetColumnAliasRenameHistory(GetColumnAliasRenameHistoryRequest) returns (GetColumnAliasRenameHistoryResponse);
// Returns the unified append-only history for column and option aliases.
rpc GetAliasChangeHistory(GetAliasChangeHistoryRequest) returns (GetAliasChangeHistoryResponse);
@@ -463,31 +460,6 @@ message CopyProfileResponse {
int32 scripts_copied = 4;
}
// Request to fetch recorded column alias rename history for one profile.
message GetColumnAliasRenameHistoryRequest {
string profile_name = 1;
// Filter. When omitted, returns all tables in the profile.
optional int64 table_definition_id = 2;
}
// One recorded column alias rename.
message ColumnAliasRenameHistoryEntry {
int64 id = 1;
string profile_name = 2;
int64 table_definition_id = 3;
string table_name = 4;
string old_column_name = 5;
string new_column_name = 6;
string created_at = 7;
}
// Response with stored column alias rename history rows.
message GetColumnAliasRenameHistoryResponse {
string profile_name = 1;
repeated ColumnAliasRenameHistoryEntry entries = 2;
}
enum AliasChangeKind {
ALIAS_CHANGE_KIND_UNSPECIFIED = 0;
ALIAS_CHANGE_KIND_COLUMN = 1;