Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there SQLAlchemy automigration tool like South for Django?

I looked to sqlalchemy-migrate but it doesn't seem to generate sql update scripts automatically or upgrade downgrade DB

Looks like with sqlalchemy-migrate you need to a) manually copy your old model to a new file b) crate new model in application and copy it to a new file c) write manually create/drop/alter tables in python sqlalchemy extended dialect d) generate sql alter script e) run command to execute alter sql script

As for me it doesn't solve the problem and only adds overhead, as I can simply do d) manually and it will be much faster then do a), b), c) manually just to d) that you can do in one step.

Is there any auto migration libraries for SQLAlchemy like South for Django, or many RoR-like migration tools?

What I need is to change SQLAlchemy model in python app, run tool and it will compare current DB schema to new DB schema that new model should use, and create Alter scripts that I can adjust manually and execute.

Is there any solution like this in Python?

share|improve this question

2 Answers

There is Alembic which looks very promising, but the problem is (for now) that the support for SQlite databases is very limited.

share|improve this answer

Have you looked into using sqlalchemy-migrate? http://shane.caraveo.com/2010/09/13/database-migrations-for-sqlalchemy-part-duex/

share|improve this answer
9  
Read the question. – Tobu Feb 23 '11 at 4:48
I was able to update DB from the model using the approach from the blog post, but it works ONLY for the simplest models - as soon as you want it to create DB from the model that has FKs, ManyToMany relationships - it fails with strange SQLAlchemy exceptions about nonexistent related tables and their IDs, while the same model EASILY populates DB using the native SQLAlchey create_all() I'm not sure why one works and other not. Looks like SA-migrate doesn't know about related tables when creates the particular table with FK. – Zelid Feb 24 '11 at 18:29
Did you dig into the code and try to fix the bug? I think that sqlalchemy-migrate is the closest you will find to a solution. – Michael Dillon Feb 25 '11 at 4:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.