def downgrade():
op.drop_constraint(
op.f(
'fk_transactions_transfer_id_transactions'),
'transactions',
type_='foreignkey'
)
op.drop_column('transactions', 'transfer_id')
文章目录