mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fix an issue in ERD tool where SQL generated is missing columns for the table. #6920
This commit is contained in:
parent
0ac471d160
commit
7f49b891df
@ -339,7 +339,7 @@ def parse_format_columns(data, mode=None):
|
||||
final_columns = []
|
||||
|
||||
for c in columns:
|
||||
if 'inheritedfrom' not in c:
|
||||
if c.get('inheritedfrom', None) is None:
|
||||
final_columns.append(c)
|
||||
|
||||
# Now we have all lis of columns which we need
|
||||
|
Loading…
Reference in New Issue
Block a user