如何覆盖remove_column方法rails migration?

时间:2017-01-27 11:03:43

标签: ruby-on-rails migration override

我需要在生产环境中使用这种方法时要小心谨慎! 喜欢:

def remove_column(...)
  raise 'You will delete data with column !' if Rails.env.production?
  [... normal code ...]
end

1 个答案:

答案 0 :(得分:0)

我没有测试过这个,但也许是这样的?

LIB / schema_statements.rb

module ActiveRecord
  module ConnectionAdapters 
    module SchemaStatements
      include ActiveRecord::Migration::JoinTable

      def remove_column(...)
        raise 'You will delete data with column !' if Rails.env.production?
        super
      end
    end
  end
end