数据库
首页 > 数据库> > 使用Alembic与sqlalchemy_utils时出现问题

使用Alembic与sqlalchemy_utils时出现问题

作者:互联网

在我的sqlalchemy模型中,我使用sqlalchemy_utils的choicetype:

id = db.Column(db.Integer, primary_key=True)
code = db.Column(db.Integer, nullable=True)
level = db.Column(mytypes.types.ChoiceType(LEVEL))

我按照此处的说明进行了所有操作http://alembic.readthedocs.org/en/latest/autogenerate.html#autogen-module-prefix.在我的模型中,我从模块mytypes.types中导入了choicetype:

from sqlalchemy_utils.types.choice import ChoiceType

,在alembic / env.py中,我添加了上下文

context.configure(
    connection=connection,
    target_metadata=target_metadata,
    user_module_prefix="mytypes.types."
    # ...
)

,并在script.py.mako中

import mytypes.types

问题是当我修改模型时,我得到了一些东西
 像这样

from alembic import op
import sqlalchemy as sa
import mytypes.types

def upgrade():
### commands auto generated by Alembic - please adjust! ###
op.add_column('logging', sa.Column('level', mytypes.types.ChoiceType(length=255), nullable=True))
### end Alembic commands ###

为什么Alembic没有将“ LEVEL”参数传递给choicetype,为什么它却传递了length = 255?

解决方法:

我通过手动更改对此进行了修复
mytypes.types.ChoiceType(长度= 255)

mytypes.types.ChoiceType(MyEnum)
并导入.

标签:sqlalchemy,alembic,python
来源: https://codeday.me/bug/20191120/2043291.html