ruby-on-rails – 如何在rails中创建可逆迁移帮助程序?

ruby-on-rails – 如何在rails中创建可逆迁移帮助程序?,第1张

概述我发现自己必须在rails应用程序的几个表上执行非常相似的sql语句(除了表名之外可能有1个参数).结果,我得到了很多类似的迁移,就像这样: class DoSomeSQLOnUser < ActiveRecord::Migration def up execute('some long sql that alters the user.field1') execute('so 我发现自己必须在rails应用程序的几个表上执行非常相似的SQL语句(除了表名之外可能有1个参数).结果,我得到了很多类似的迁移,就像这样:

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中创建可逆迁移帮助程序?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1280011.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-09
下一篇 2022-06-09

发表评论

登录后才能评论

评论列表(0条)

保存