aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/migrations/interleaved/pass_3/2_i_raise_on_down.rb
blob: 9b1ce9f0172322485405cf5a5d9284886999dbd8 (plain) (blame)
1
2
3
4
5
6
7
8
class IRaiseOnDown < ActiveRecord::Migration
  def self.up
  end

  def self.down
    raise
  end
end