mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Add deprecation message on Firebird / Sqlserver / Oracle database tasks.
This commit is contained in:
parent
742d090189
commit
d481e05060
3 changed files with 3 additions and 0 deletions
|
@ -4,6 +4,7 @@ module ActiveRecord
|
|||
delegate :connection, :establish_connection, to: ActiveRecord::Base
|
||||
|
||||
def initialize(configuration)
|
||||
ActiveSupport::Deprecation.warn "This database tasks were deprecated, because this tasks should be served by the 3rd party adapter."
|
||||
@configuration = configuration
|
||||
end
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@ module ActiveRecord
|
|||
delegate :connection, :establish_connection, to: ActiveRecord::Base
|
||||
|
||||
def initialize(configuration)
|
||||
ActiveSupport::Deprecation.warn "This database tasks were deprecated, because this tasks should be served by the 3rd party adapter."
|
||||
@configuration = configuration
|
||||
end
|
||||
|
||||
|
|
|
@ -6,6 +6,7 @@ module ActiveRecord
|
|||
delegate :connection, :establish_connection, to: ActiveRecord::Base
|
||||
|
||||
def initialize(configuration)
|
||||
ActiveSupport::Deprecation.warn "This database tasks were deprecated, because this tasks should be served by the 3rd party adapter."
|
||||
@configuration = configuration
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue