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
I already have a database, I am using SQLAlchemy to interact with it. I have currently mapped database tables to SQLAlchemy objects as mentioned below. Base = automap_base() Material = Base.classes.app1_material Customer = Base.classes.app1_customer
Can you share how to extend sqlalchemy-mixins to these classes?
The text was updated successfully, but these errors were encountered:
I already have a database, I am using SQLAlchemy to interact with it. I have currently mapped database tables to SQLAlchemy objects as mentioned below.
Base = automap_base()
Material = Base.classes.app1_material
Customer = Base.classes.app1_customer
Can you share how to extend
sqlalchemy-mixins
to these classes?The text was updated successfully, but these errors were encountered: