是否有与 Rails 迁移等效的 PHP?
是否存在与 Rails 迁移等效的 PHP?
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.
推荐答案
Ruckusing 迁移是PHP 5.2+ 的数据库迁移"框架.
Ruckusing Migrations is a "Database Migrations" framework for PHP 5.2+.
该框架仿照来自 Ruby on Rails 的 ActiveRecord::Migrations.
The framework is modeled after ActiveRecord::Migrations from Ruby on Rails.
相关文章