Skip to content

Commit

Permalink
remove dropped ledger columns from Edit Data columns
Browse files Browse the repository at this point in the history
  • Loading branch information
nofield committed Sep 15, 2022
1 parent 6e007e6 commit 21470b0
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,12 @@ public EditTableMetadata GetObjectMetadata(DbConnection connection, string[] obj
{
Column smoColumn = smoResult.Columns[i];

// Don't return columns that are dropped
if (smoColumn.IsDroppedLedgerColumn)
{
continue;
}

string defaultValue = null;
try
{
Expand Down

0 comments on commit 21470b0

Please sign in to comment.