debian-mirror-gitlab/db/migrate/20151109134526_add_issues_state_index.rb
2019-02-15 15:39:39 +05:30

7 lines
132 B
Ruby

# rubocop:disable all
class AddIssuesStateIndex < ActiveRecord::Migration[4.2]
def change
add_index :issues, :state
end
end