class DoSomesqlOnUser < ActiveRecord::Migration def up execute('some long sql that alters the user.fIEld1') execute('some long sql that alters the user.fIEld2') end def down execute('some sql that undoes the changes') endend
然后我对客户,销售等有同样的看法.
我想扩展ActiveRecord :: Migration,以便我可以这样做:
class DoSomesqlOnUser < ActiveRecord::Migration def change do_custom_thing_on :users,:fIEld1 do_custom_thing_on :users,:fIEld2 endend
我怎样才能做到这一点?我认为当 *** 作分为上下时我知道如何 *** 作,如下所示:
class DoSomesqlOnUser < ActiveRecord::Migration def up do_custom_thing_on :users,:fIEld2 end def down undo_custom_thing_on :users,:fIEld1 undo_custom_thing_on :users,:fIEld2 endend
但这样做是为了让变化“可逆”逃脱了我.
解决方法 它似乎不是官方支持的方式,所以可能你需要打开类ActiveRecord :: Migration :: CommandRecorder并记录新方法及其反转版本.在activerecord/lib/active_record/migration/command_recorder.rb找到该类的定义.
总结以上是内存溢出为你收集整理的ruby-on-rails – 如何在rails中创建可逆迁移帮助程序?全部内容,希望文章能够帮你解决ruby-on-rails – 如何在rails中创建可逆迁移帮助程序?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)