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

  def self.down
  end
end