我使用Flask-SQLAlchemy定义我的模型,然后使用Flask-Migrate自动生成迁移脚本以部署到PostgreSQL数据库。我在我的应用程序中使用的数据库中定义了许多SQL视图,如下所示。
但是,Flask-Migrate现在为视图生成一个迁移文件,因为它认为它是一个表。如何正确地让Flask-Migrate / Alembic在自动生成期间忽略视图?
SQL视图名称:vw_SampleView
包含两列:id
和rowcount
。
class ViewSampleView(db.Model):
__tablename__ = 'vw_report_high_level_count'
info = dict(is_view=True)
id = db.Column(db.String(), primary_key=True)
rowcount = db.Column(db.Integer(), nullable=False)
这意味着我现在可以像这样进行查询:
ViewSampleView.query.all()
我尝试按照http://alembic.zzzcomputing.com/en/latest/cookbook.html上的说明操作,并将info = dict(is_view=True)
部分添加到我的模型中,并将以下位添加到我的env.py
文件中,但不知道从哪里开始。< / p>
def include_object(object, name, type_, reflected, compare_to):
"""
Exclude views from Alembic's consideration.
"""
return not object.info.get('is_view', False)
...
context.configure(url=url,include_object = include_object)
答案 0 :(得分:3)
我认为(虽然没有经过测试)您可以将表格标记为__table_args__
属性的视图:
class ViewSampleView(db.Model):
__tablename__ = 'vw_report_high_level_count'
__table_args__ = {'info': dict(is_view=True)}
id = db.Column(db.String(), primary_key=True)
rowcount = db.Column(db.Integer(), nullable=False)