aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/migrations/version_check/20131219224947_migration_version_check.rb
blob: 9d46485a313505be73d73f3795fc0c5620cc1651 (plain) (blame)
1
2
3
4
5
6
7
8
class MigrationVersionCheck < ActiveRecord::Migration
  def self.up
    raise "incorrect migration version" unless version == 20131219224947
  end

  def self.down
  end
end