f405954764
This adds indexes for the following columns: * notes.line_code * ci_projects.gitlab_id * ci_projects.shared_runners_enabled * ci_builds.type * ci_builds.status
5 lines
110 B
Ruby
5 lines
110 B
Ruby
class AddNotesLineCodeIndex < ActiveRecord::Migration
|
|
def change
|
|
add_index :notes, :line_code
|
|
end
|
|
end
|