标签: sqlalchemy
答案 0 :(得分:36)
您可以明确指定表的模式名称:
class AttributeConversion(Base) __tablename__ = 'attribute_conversion' __table_args__ = {'schema' : 'test'}
请参阅specifying-the-schema-name上的文档。