我想使用Alembic将数据库的列类型从字符串更改为整数。如果我使用纯SQL,它实现了目标:
alter table statistic_ticket alter column tags type bigint using tags::bigint;
但是当我使用Alembic时:
import sqlalchemy as sa
def upgrade():
op.alter_column('statistic_ticket', 'tags', nullable = True, existing_type=sa.String(length=255), type_=sa.Integer, existing_nullable=True)
我收到了一个错误:
HINT: Please use USING clause for carrying out the conversion
SQLAlchemy生成的SQL语句是:
ALTER TABLE statistic_ticket ALTER COLUMN tags TYPE INTEGER' {}
有人可以通过op.execute(SQL)
告诉我如何在alembic或SQLAlchemy中使用SQL吗?
答案 0 :(得分:4)
从Alembic 0.8.8开始,您可以使用postgresql_using
关键字:
op.alter_column('statistic_ticket', 'tags', type_=sa.BigInteger,
postgresql_using='tags::bigint')
在以前的版本中,您必须使用op.execute
:
op.execute('ALTER TABLE statistic_ticket ALTER COLUMN '
'tags TYPE bigint USING tags::bigint')