问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501

opens是什么意思

发布网友 发布时间:2022-04-22 06:43

我来回答

2个回答

懂视网 时间:2022-05-02 02:52


        使用google搜索关键字“alembic enum type”,第一个出现的是stackflow的一个帖子Altering an Enum field using Alembic。

from alembic import opimport sqlalchemy as sa

old_options = (‘nonexistent_executable‘, ‘signal‘, ‘success‘, ‘timed_out‘)new_options = sorted(old_options + (‘output_limit_exceeded‘,))old_type = sa.Enum(*old_options, name=‘status‘)new_type = sa.Enum(*new_options, name=‘status‘)tmp_type = sa.Enum(*new_options, name=‘_status‘)tcr = sa.sql.table(‘testcaseresult‘,
                   sa.Column(‘status‘, new_type, nullable=False))def upgrade():
    # Create a tempoary "_status" type, convert and drop the "old" type
    tmp_type.create(op.get_bind(), checkfirst=False)
    op.execute(‘ALTER TABLE testcaseresult ALTER COLUMN status TYPE _status‘
               ‘ USING status::text::_status‘)
    old_type.drop(op.get_bind(), checkfirst=False)
    # Create and convert to the "new" status type
    new_type.create(op.get_bind(), checkfirst=False)
    op.execute(‘ALTER TABLE testcaseresult ALTER COLUMN status TYPE status‘
               ‘ USING status::text::status‘)
    tmp_type.drop(op.get_bind(), checkfirst=False)def downgrade():
    # Convert ‘output_limit_exceeded‘ status into ‘timed_out‘
    op.execute(tcr.update().where(tcr.c.status==u‘output_limit_exceeded‘)
               .values(status=‘timed_out‘))
    # Create a tempoary "_status" type, convert and drop the "new" type
    tmp_type.create(op.get_bind(), checkfirst=False)
    op.execute(‘ALTER TABLE testcaseresult ALTER COLUMN status TYPE _status‘
               ‘ USING status::text::_status‘)
    new_type.drop(op.get_bind(), checkfirst=False)
    # Create and convert to the "old" status type
    old_type.create(op.get_bind(), checkfirst=False)
    op.execute(‘ALTER TABLE testcaseresult ALTER COLUMN status TYPE status‘
               ‘ USING status::text::status‘)
    tmp_type.drop(op.get_bind(), checkfirst=False)


这个方法提供了解决了问题,但稍显繁琐。我们可以做一下简单的封装,生成一个通用函数:

def upgrade_enum(table, column_name, enum_name, old_options, new_options):
    old_type = sa.Enum(*old_options, name=enum_name)
    new_type = sa.Enum(*new_options, name=enum_name)
    tmp_type = sa.Enum(*new_options, name="_" + enum_name)
    # Create a temporary type, convert and drop the "old" type
    tmp_type.create(op.get_bind(), checkfirst=False)
    op.execute(
        u‘ALTER TABLE {0} ALTER COLUMN {1} TYPE _{2}‘
        u‘ USING {1}::text::_{2}‘.format(
            table,
            column_name,
            enum_name
        )
    )
    old_type.drop(op.get_bind(), checkfirst=False)
    # Create and convert to the "new" type
    new_type.create(op.get_bind(), checkfirst=False)
    op.execute(
        u‘ALTER TABLE {0} ALTER COLUMN {1} TYPE {2}‘
        u‘ USING {1}::text::{2}‘.format(
            table,
            column_name,
            enum_name
        )
    )
    tmp_type.drop(op.get_bind(), checkfirst=False)

 这样就可以直接通过传参直接来执行升级或降级操作了。


操作环境:

 alembic-0.8.2
-bash-4.2$ psql --version
psql (PostgreSQL) 9.3.10


本文出自 “DanielQu” 博客,请务必保留此出处http://qujunorz.blog.51cto.com/6378776/1921663

Openstack数据库管理工具alembic更新Enum类型

标签:type   enum   postgres   openstack   alembic   

热心网友 时间:2022-05-02 00:00

opens
英 ['əupənz]
美 ['əupənz]

n. 打开;公开赛事;旷野(open的复数形式)
v. 打开;开放(open的第三人称单数形式);开辟
声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com
找专业防水队做完还漏水怎么维权 法院会受理房屋漏水造成的纠纷吗? 巴西龟最长活多久,家养!!! 养胃的药最好的是什么啊 婴儿积食发烧不愿吃药怎么办 板门穴位在哪个部位 手机设置放偷看的方法? 凝结水回收器生产厂家? 个人账户养老金预测公式:现有5万元,缴费20年,能领多少钱? 临沂比较有名的男装品牌 三位数字密码破解方法 如何破解 3位的 密码箱的密码 怎样破解三位密码 如何快速破解三位数的密码? 猕猴桃腐烂是什么样子 猕猴桃怎么辨别坏了 怎样辨别猕猴桃的好坏? 猕猴桃怎么样算是坏掉了? 成熟的猕猴桃有什么特征?怎么判断是否开始坏了?不... 怎样鉴别猕猴桃的好与坏? 怎样身份证正反面截图 身份证的反面多一样吗? 身份证反面是哪一面? 怎样查看一个公司的财务报表 哪些网站可以看到一些公司的财务报表 怎么查看上市公司的财务报表 我一个手机号注册了2个微信,但是其中一个密... 在会计师事务所的官网可以看被审计公司的财务报表... 用手机号申请的微信密码忘了怎样办 一个手机号码注册了两个之前那个微信怎么找... 破解软件都需要什么?? is open,opened,opens,close,closed的区别 破解密码 世界三大游戏破解组是哪三个? open(opens) / be open / opening 的用法 怎样破解小米三数字密码? close、closes、closed、open、opens、opend 各是... is open 和is opened区别 怎样破解三A扑克 open中文是什么意思 幻想三国志3破解方法 外国人打游戏opens是什么意思? 破解第三个,谢谢,前面两个破解出来了。 黑鸦片香水OPENS是什么意思? 什么叫三重丧 破解不了怎么办? is open 和 opens 的区别 台式电脑三道密码怎么破解 he opens his bag and took out a notebook这句话... c语言 暴力破解密码箱密码,自己设定一个三位数的密... 18850035如何破解后三位?