mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2025-06-14 12:06:06 +00:00
Support SQLite ALTER with batch feature during alembic migrate
Fix #404
This commit is contained in:
@ -33,8 +33,9 @@ def update_data():
|
||||
)
|
||||
|
||||
def upgrade():
|
||||
# change column data type
|
||||
op.alter_column('setting', 'value', existing_type=sa.String(256), type_=sa.Text())
|
||||
with op.batch_alter_table('setting') as batch_op:
|
||||
# change column data type
|
||||
batch_op.alter_column('value', existing_type=sa.String(256), type_=sa.Text())
|
||||
# update data for new schema
|
||||
update_data()
|
||||
|
||||
@ -42,5 +43,6 @@ def upgrade():
|
||||
def downgrade():
|
||||
# delete added records in previous version
|
||||
op.execute("DELETE FROM setting WHERE id > 41")
|
||||
# change column data type
|
||||
op.alter_column('setting', 'value', existing_type=sa.Text(), type_=sa.String(256))
|
||||
with op.batch_alter_table('setting') as batch_op:
|
||||
# change column data type
|
||||
batch_op.alter_column('value', existing_type=sa.Text(), type_=sa.String(256))
|
||||
|
@ -23,8 +23,10 @@ def upgrade():
|
||||
# written to the DB.
|
||||
op.execute("DELETE FROM setting")
|
||||
|
||||
# drop view column since we don't need it
|
||||
op.drop_column('setting', 'view')
|
||||
with op.batch_alter_table('setting') as batch_op:
|
||||
# drop view column since we don't need it
|
||||
batch_op.drop_column('view')
|
||||
|
||||
def downgrade():
|
||||
op.add_column('setting', sa.Column('view', sa.String(length=64), nullable=True))
|
||||
with op.batch_alter_table('setting') as batch_op:
|
||||
batch_op.add_column(sa.Column('view', sa.String(length=64), nullable=True))
|
||||
|
Reference in New Issue
Block a user