Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Modify data as part of an alembic upgrade

Tags:

I would like to modify some database data as part of an alembic upgrade.

I thought I could just add any code in the upgrade of my migration, but the following fails:

def upgrade():     ### commands auto generated by Alembic - please adjust! ###     op.add_column('smsdelivery', sa.Column('sms_message_part_id', sa.Integer(), sa.ForeignKey('smsmessagepart.id'), nullable=True))     ### end Alembic commands ###      from volunteer.models import DBSession, SmsDelivery, SmsMessagePart      for sms_delivery in DBSession.query(SmsDelivery).all():         message_part = DBSession.query(SmsMessagePart).filter(SmsMessagePart.message_id == sms_delivery.message_id).first()         if message_part is not None:             sms_delivery.sms_message_part = message_part 

with the following error:

sqlalchemy.exc.UnboundExecutionError: Could not locate a bind configured on mapper Mapper|SmsDelivery|smsdelivery, SQL expression or this Session 

I am not really understanding this error. How can I fix this or is doing operations like this not a possibility?

like image 433
Peter Smit Avatar asked Aug 15 '12 13:08

Peter Smit


People also ask

How do I change my alembic head?

Delete (or move to another folder) the specific migration file (in migrations/versions folder). The head will automatically revert to the most recent remaining migration. Using stamp will set the db version value to the specified revision; not alter the head revision number.

How do I get rid of migration in alembic?

There's currently no command to delete migrations from your versions directory, so if you want to completely wipe away all trace of your bad migration, you'll need to delete the version file (like 4c009570237e_add_widget_table.py ) manually.

What is alembic ini?

Alembic provides for the creation, management, and invocation of change management scripts for a relational database, using SQLAlchemy as the underlying engine. This tutorial will provide a full introduction to the theory and usage of this tool. To begin, make sure Alembic is installed as described at Installation.


1 Answers

It is difficult to understand what exactly you are trying to achieve from the code excerpt your provided. But I'll try to guess. So the following answer will be based on my guess.

Line 4 - you import things (DBSession, SmsDelivery, SmsMessagePart) form your modules and then you are trying to operate with these objects like you do in your application.

The error shows that SmsDelivery is a mapper object - so it is pointing to some table. mapper objects should bind to valid sqlalchemy connection.

Which tells me that you skipped initialization of DB objects (connection and binding this connection to mapper objects) like you normally do in your application code.

DBSession looks like SQLAlchemy session object - it should have connection bind too.

Alembic already has connection ready and open - for making changes to db schema you are requesting with op.* methods.

So there should be way to get this connection.

According to Alembic manual op.get_bind() will return current Connection bind:
For full interaction with a connected database, use the “bind” available from the context:

from alembic import op connection = op.get_bind() 

So you may use this connection to run your queries into db.

PS. I would assume you wanted to perform some modifications to data in your table. You may try to formulate this modification into one update query. Alembic has special method for executing such changes - so you would not need to deal with connection.
alembic.operations.Operations.execute

execute(sql, execution_options=None) 

Execute the given SQL using the current migration context.

In a SQL script context, the statement is emitted directly to the output stream. There is no return result, however, as this function is oriented towards generating a change script that can run in “offline” mode.

Parameters: sql – Any legal SQLAlchemy expression, including:

  • a string a sqlalchemy.sql.expression.text() construct.
  • a sqlalchemy.sql.expression.insert() construct.
  • a sqlalchemy.sql.expression.update(),
  • sqlalchemy.sql.expression.insert(), or
  • sqlalchemy.sql.expression.delete() construct. Pretty much anything that’s “executable” as described in SQL Expression Language Tutorial.
like image 55
vvladymyrov Avatar answered Oct 21 '22 14:10

vvladymyrov