aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/lib/active_record/schema_migration.rb
blob: 5a04660dc3bfe00b9befa8141065f9e13cc0d6dc (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                                           
require 'active_record'

module ActiveRecord
  class SchemaMigration < ActiveRecord::Base
    def self.table_name
      Base.table_name_prefix + 'schema_migrations' + Base.table_name_suffix
    end
  end
end