File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
lib/active_record/connection_adapters/oracle_enhanced
spec/active_record/connection_adapters/oracle_enhanced Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -284,7 +284,7 @@ def insert_versions_sql(versions) # :nodoc:
284
284
} << "SELECT * FROM DUAL\n "
285
285
else
286
286
if versions . is_a? ( Array )
287
- # called from ActiveRecord::Base.connection#dump_schema_information
287
+ # called from ActiveRecord::Base.connection#dump_schema_versions
288
288
versions . map { |version |
289
289
"INSERT INTO #{ sm_table } (version) VALUES (#{ quote ( version ) } )"
290
290
} . join ( "\n \n /\n \n " )
Original file line number Diff line number Diff line change @@ -331,7 +331,7 @@ class ::TestPost < ActiveRecord::Base
331
331
end
332
332
end
333
333
334
- let ( :dump ) { ActiveRecord ::Base . connection . dump_schema_information }
334
+ let ( :dump ) { ActiveRecord ::Base . connection . dump_schema_versions }
335
335
336
336
before do
337
337
ActiveRecord ::Base . connection_pool . schema_migration . create_table
You can’t perform that action at this time.
0 commit comments