Flowdock
method

proper_table_name

Importance_0
v2.1.0 - Show latest stable - 0 notes - Class: ActiveRecord::Migrator
proper_table_name(name) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/migration.rb, line 379
      def proper_table_name(name)
        # Use the Active Record objects own table_name, or pre/suffix from ActiveRecord::Base if name is a symbol/string
        name.table_name rescue "#{ActiveRecord::Base.table_name_prefix}#{name}#{ActiveRecord::Base.table_name_suffix}"
      end
Register or log in to add new notes.