class RuboCop::Cop::Discourse::NoResetColumnInformationInMigrations
ActiveRecord methods in migrations and prefer to write SQL directly.
concurrently for multisites. Also, we don’t encourage the use of
migrations. The method is not thread safe and we run migrations
Do not use ‘ActiveRecord::ModelSchema.reset_column_information` in
def on_send(node)
def on_send(node) return if node.method_name != :reset_column_information add_offense(node, message: MSG) end