diff options
author | Vipul A M <vipulnsward@gmail.com> | 2013-07-03 08:44:04 +0530 |
---|---|---|
committer | Vipul A M <vipulnsward@gmail.com> | 2013-07-03 15:28:05 +0530 |
commit | 28d1d3f0fbbd8dd6c312ff69563c97bf58b5ccaa (patch) | |
tree | b598b5e38f68830d698ad795edeaf9bfba3d5078 /activerecord | |
parent | f775a8456a85a6ff838ed37de1aa7bcde9fc9c32 (diff) | |
download | rails-28d1d3f0fbbd8dd6c312ff69563c97bf58b5ccaa.tar.gz rails-28d1d3f0fbbd8dd6c312ff69563c97bf58b5ccaa.tar.bz2 rails-28d1d3f0fbbd8dd6c312ff69563c97bf58b5ccaa.zip |
Remove deprecated `ActiveRecord::Fixtures.find_table_name` in favour of `ActiveRecord::Fixtures.default_fixture_model_name`.
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/CHANGELOG.md | 5 | ||||
-rw-r--r-- | activerecord/lib/active_record/fixtures.rb | 6 |
2 files changed, 5 insertions, 6 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index 162c42e2c9..f76246f7a3 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -1,3 +1,8 @@ +* Remove deprecated `ActiveRecord::Fixtures.find_table_name` in favor of + `ActiveRecord::Fixtures.default_fixture_model_name`. + + *Vipul A M* + * Removed deprecated `columns_for_remove` from `SchemaStatements`. *Neeraj Singh* diff --git a/activerecord/lib/active_record/fixtures.rb b/activerecord/lib/active_record/fixtures.rb index 70eda332b3..47d4f3637f 100644 --- a/activerecord/lib/active_record/fixtures.rb +++ b/activerecord/lib/active_record/fixtures.rb @@ -379,12 +379,6 @@ module ActiveRecord @@all_cached_fixtures = Hash.new { |h,k| h[k] = {} } - def self.find_table_name(fixture_set_name) # :nodoc: - ActiveSupport::Deprecation.warn( - "ActiveRecord::Fixtures.find_table_name is deprecated and shall be removed from future releases. Use ActiveRecord::Fixtures.default_fixture_model_name instead.") - default_fixture_model_name(fixture_set_name) - end - def self.default_fixture_model_name(fixture_set_name) # :nodoc: ActiveRecord::Base.pluralize_table_names ? fixture_set_name.singularize.camelize : |