gpt4 book ai didi

sqlalchemy - Flask 迁移 : Problem creating table and using existing Enum in database. `create_type=False` 不工作

转载 作者:行者123 更新时间:2023-12-04 01:32:02 26 4
gpt4 key购买 nike

我正在使用 flask-migrate、SQLAlchemy 和 alembic 来管理我的数据库。我想在数据库中创建一个新表。新表有一个使用现有 Enum 的列。我已经阅读了许多 SO 问题,您可以将现有的 Enumcreate_type=False 标志一起使用。这似乎对我不起作用。请参阅下面我的修订文件中的 upgrade() 函数。

def upgrade():
op.create_table(
'label',
sa.Column('id', UUID(as_uuid=True), default=uuid4),
sa.Column('labelText', sa.Text, nullable=False),
sa.Column('sourceCountry', sa.Enum('it', 'gb', 'gr', 'bg', 'pt', name='country', create_type=False), nullable=True),
sa.PrimaryKeyConstraint('id'),
sa.UniqueConstraint('id')

)
op.add_column('entity', sa.Column('labelId', UUID(as_uuid=True)))
op.create_foreign_key(
'fk_entity_label',
'entity', 'label',
['labelId'], ['id'],
)

这是我的版本:

Flask==1.1.1
Flask-Ext==0.1
Flask-Migrate==2.5.3
Flask-Script==2.0.6
Flask-SQLAlchemy==2.4.1
alembic==1.4.1

我的错误:

sqlalchemy.exc.ProgrammingError: (psycopg2.errors.DuplicateObject) type "country" already exists

[SQL: CREATE TYPE country AS ENUM ('it', 'gb', 'gr', 'bg', 'pt')]
(Background on this error at: http://sqlalche.me/e/f405)

最佳答案

发现问题。我使用的是 sqlalchemy.Enum(),我应该改用 postgres.ENUM()。改变一切使一切正常。

关于sqlalchemy - Flask 迁移 : Problem creating table and using existing Enum in database. `create_type=False` 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60763478/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com