Search code examples
ruby-on-railsdjangopylonsturbogears

What's the equivalent of Rails' Migrations or Django's South in Pylons and TG2?


Does anyone know how Pylons and TG2 projects handle database migrations? I'm looking for something similar to Rails' Migrations and Django's South.


Solution

  • As Santi said, it doesn't have its own, but some of the ones available for SQLAlchemy should work:

    sqlalchemy-migrate which is also used by tesla-pylons-elixir as a way to get better integration with Pylons.

    miruku