mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Merge pull request #24705 from kamipo/add_nodoc_to_insert_versions_sql
Add `:nodoc:` to `insert_versions_sql` [ci skip]
This commit is contained in:
commit
77cd14bbbf
2 changed files with 2 additions and 2 deletions
|
@ -989,7 +989,7 @@ module ActiveRecord
|
|||
insert_versions_sql(versions)
|
||||
end
|
||||
|
||||
def insert_versions_sql(versions)
|
||||
def insert_versions_sql(versions) # :nodoc:
|
||||
sm_table = ActiveRecord::Migrator.schema_migrations_table_name
|
||||
|
||||
if supports_multi_insert?
|
||||
|
|
|
@ -298,7 +298,7 @@ module ActiveRecord
|
|||
false
|
||||
end
|
||||
|
||||
# Does this adapter support multi-value insert
|
||||
# Does this adapter support multi-value insert?
|
||||
def supports_multi_insert?
|
||||
true
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue