1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fix generated default index names in API doc [ci skip]

This commit is contained in:
mikong 2020-08-18 23:44:08 +08:00
parent 49f1f64c10
commit d8115ba5c7
No known key found for this signature in database
GPG key ID: 5FDA1DA9B09E49BA

View file

@ -722,7 +722,7 @@ module ActiveRecord
# #
# generates: # generates:
# #
# CREATE INDEX suppliers_name_index ON suppliers(name) # CREATE INDEX index_suppliers_on_name ON suppliers(name)
# #
# ====== Creating a index which already exists # ====== Creating a index which already exists
# #
@ -730,7 +730,7 @@ module ActiveRecord
# #
# generates: # generates:
# #
# CREATE INDEX IF NOT EXISTS suppliers_name_index ON suppliers(name) # CREATE INDEX IF NOT EXISTS index_suppliers_on_name ON suppliers(name)
# #
# Note: Not supported by MySQL. # Note: Not supported by MySQL.
# #
@ -740,7 +740,7 @@ module ActiveRecord
# #
# generates: # generates:
# #
# CREATE UNIQUE INDEX accounts_branch_id_party_id_index ON accounts(branch_id, party_id) # CREATE UNIQUE INDEX index_accounts_on_branch_id_and_party_id ON accounts(branch_id, party_id)
# #
# ====== Creating a named index # ====== Creating a named index
# #
@ -770,7 +770,7 @@ module ActiveRecord
# #
# ====== Creating an index with a sort order (desc or asc, asc is the default) # ====== Creating an index with a sort order (desc or asc, asc is the default)
# #
# add_index(:accounts, [:branch_id, :party_id, :surname], order: {branch_id: :desc, party_id: :asc}) # add_index(:accounts, [:branch_id, :party_id, :surname], name: 'by_branch_desc_party', order: {branch_id: :desc, party_id: :asc})
# #
# generates: # generates:
# #