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
It seems that we should imports all the models one by one in advance, is there any way that we can use metadata to get this done automatically like alembic ? metadata.tables is a FacadeDict with all the models in the dict values.
The text was updated successfully, but these errors were encountered:
Current implementation forces to list the tables one by one. If you miss one, you will also miss it in the erd schema.
And if with metadata, we only need to import this single metadata once, we do not need to maintain the table list anymore.
Hello,
It seems that we should imports all the models one by one in advance, is there any way that we can use metadata to get this done automatically like alembic ?
metadata.tables
is a FacadeDict with all the models in the dict values.The text was updated successfully, but these errors were encountered: