发布网友 发布时间:2022-04-22 06:43
共4个回答
懂视网 时间:2022-04-10 01:54
使用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-04-09 23:02
is open是表达的一种状态,保持每天开的这个状态十小时。is opened是被动语态,被打卡。
选A.
解析:shop为第三人称单数,用opens,强调动作;后面用is open强调状态。句意:这家商店早上八点开门,每天营业十小时。
一、shop
1、含义:n. 商店;车间;v. 逛商店;购物;买东西。
2、用法
shop的基本意思是“商店,店铺”,一般指零售的小商店,在美国也可指专业商店或大店内的专业零售部。
shop也可作“办事处,机构,企业”解。
在口语里, shop可作“工厂,车间,作坊”解,尤用于构成复合词
The dresses in the shop are priced high.
这家商店的衣服定价很高。
二、opens
1、含义:v. 打开;动词open的第三人称单数形式.
2、用法
open的基本意思是“开着的,开放的”,也可作“坦率的,无偏见的”解。作“空旷的,开阔的”解时,在句中只充当定语。作“开始营业的,(职位等)空缺的”解时,在句中作表语。
open作表语时,后面经常跟to或with短语,open在句中还可充当宾语补足语。
The bird flies out when he opens the window.
当他打开窗户时鸟就飞出去了。
三、and
1、含义:conj. 和;加;接着;那么。
2、用法
and用作连词,主要用来连接两个或两个以上的词、短语或句子。
and连接两个相同的词语可用以加强语气或表示动作的反复或一再发生。
常用and连接十位数和百位数。
He likes to play football and to sing popular songs.
他喜欢踢足球和唱流行歌曲。
四、hours
1、含义:时间; n.;时序女神;荷赖(掌四时更迭和自然秩序的女神)。
2、用法
hour的基本意思是“小时”,即60分钟,是可数名词;也可指“钟点”,如一点钟、两点钟等,用于正式文体中可用于24小时计时制,但常用复数形式。
Traffic is very heavy at peak hours.
在高峰时间交通非常拥挤。
五、every
1、含义:adj. 每个;一切的;所有可能的;每隔;最大的。
2、用法
every的基本意思是指组成整体的每个个体,但不把它看作具体的某一个,而是将其看作是全体成分的典型和代表。
every与抽象名词连用,表示希望、机会、理由等“一切可能的”。
every一般修饰单数名词,作主语时与动词单数形式连用,在口语中可用人称代词和物主代词的复数形式指代。
Every citizen should be obedient to the law.
每个公民都应当是遵守法律的。
热心网友 时间:2022-04-10 00:20
A
opens是因为一惯性八点开
is open是表达的一种状态,保持每天开的这个状态十小时。
is opened是被动语态,被打卡。
热心网友 时间:2022-04-10 01:55
答案是 A
is open 的open 是形容词,营业中的意思
opens 是店开门的意思
is opened 是被打开
The package can be opened by a knife. 包装可以用刀子开启。