projects
/
rails.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge remote-tracking branch 'upstream/pull/5064'
[rails.git]
/
db
/
migrate
/
20230825162137_restore_author_index_to_changeset_comments.rb
1
class RestoreAuthorIndexToChangesetComments < ActiveRecord::Migration[7.0]
2
disable_ddl_transaction!
3
4
def change
5
add_index :changeset_comments, [:author_id, :created_at], :algorithm => :concurrently
6
end
7
end