mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Changing deprecation_horizon to be Rails 4.2
Also, +ActiveRecord::Migrator.proper_table_name+ should actually have a deprecation horizon of Rails 4.2 (not 4.1).
This commit is contained in:
parent
539180cf8e
commit
3fd134c559
2 changed files with 2 additions and 2 deletions
|
@ -828,7 +828,7 @@ module ActiveRecord
|
|||
end
|
||||
|
||||
def proper_table_name(name, options = {})
|
||||
ActiveSupport::Deprecation.warn "ActiveRecord::Migrator.proper_table_name is deprecated and will be removed in Rails 4.1. Use the proper_table_name instance method on ActiveRecord::Migration instead"
|
||||
ActiveSupport::Deprecation.warn "ActiveRecord::Migrator.proper_table_name is deprecated and will be removed in Rails 4.2. Use the proper_table_name instance method on ActiveRecord::Migration instead"
|
||||
options = {
|
||||
table_name_prefix: ActiveRecord::Base.table_name_prefix,
|
||||
table_name_suffix: ActiveRecord::Base.table_name_suffix
|
||||
|
|
|
@ -32,7 +32,7 @@ module ActiveSupport
|
|||
# and the second is a library name
|
||||
#
|
||||
# ActiveSupport::Deprecation.new('2.0', 'MyLibrary')
|
||||
def initialize(deprecation_horizon = '4.1', gem_name = 'Rails')
|
||||
def initialize(deprecation_horizon = '4.2', gem_name = 'Rails')
|
||||
self.gem_name = gem_name
|
||||
self.deprecation_horizon = deprecation_horizon
|
||||
# By default, warnings are not silenced and debugging is off.
|
||||
|
|
Loading…
Reference in a new issue