I have a table from schema \"test\":
class AttributeConversion(Base): __tablename__ = \'test.attribute_conversion\'
How to select recor
You can explicity specify a schema name for a table:
class AttributeConversion(Base) __tablename__ = 'attribute_conversion' __table_args__ = {'schema' : 'test'}
See documentation on specifying the schema name.