view db/migrate/20120826182012_change_column_name_to_conform_ar.rb @ 83:ae360c3b0bb0

Disable explain when using jruby because it's not supported. The patch for this support exist but for some reason still not included in latest release of the jdbc adapter. Reference: https://github.com/jruby/activerecord-jdbc-adapter/pull/206
author Edho Arief <edho@myconan.net>
date Mon, 15 Oct 2012 03:45:18 -0700
parents 42de15334db1
children 682abad78313
line wrap: on
line source

class ChangeColumnNameToConformAr < ActiveRecord::Migration
  def change
    rename_column :pastes, :hash, :paste_hash
  end
end