我正在使用Alembic作为迁移工具,我在已更新的数据库上启动以下伪脚本(没有Alembic的修订条目,数据库模式只是最新的).
原文链接:https://www.f2er.com/postgresql/192777.htmlrevision = '1067fd2d11c8' down_revision = None from alembic import op import sqlalchemy as sa def upgrade(): op.add_column('Box',sa.Column('has_data',sa.Boolean,server_default='0')) def downgrade(): pass
只有Postgresql背后才会出现以下错误(对MysqL来说一切都很好):
INFO [alembic.migration] Context impl PostgresqlImpl. INFO [alembic.migration] Will assume transactional DDL. INFO [root] (ProgrammingError) ERREUR: la colonne « has_data » de la relation « Box » existe déjà
最后一行表示列has_data已存在.
我想在op.add_column之前检查列是否存在.