You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the column used for displaying a foreign key relationship is automatically detected by inspect() by looking for tables that have a primary key column and one other column.
This doesn't work for tables with more than two columns.
Let's allow the table section in metadata.json to optionally define a label_column which, if present, will be used for those displays.
The text was updated successfully, but these errors were encountered:
I built this wrong: my implementation is looking for the label_column on the table-being-displayed, but it should be looking for it on the table-the-foreign-key-links-to.
Currently the column used for displaying a foreign key relationship is automatically detected by
inspect()
by looking for tables that have a primary key column and one other column.This doesn't work for tables with more than two columns.
Let's allow the table section in
metadata.json
to optionally define alabel_column
which, if present, will be used for those displays.The text was updated successfully, but these errors were encountered: