views:

55

answers:

2

Is there a PHP equivalent of Rails migrations?

Looking for a good solution for configuring schema changes locally and then automatically bumping them to the server without losing data.

+2  A: 

Doctrine, an ORM and DBAL, has got migrations.

Daniel Egeberg
+2  A: 

Ruckusing Migrations is a "Database Migrations" framework for PHP5.

The framework is modeled after ActiveRecord::Migrations from Ruby on Rails.

Sagi