summaryrefslogtreecommitdiff
path: root/db/migrate/20160223192159_add_confidential_to_issues.rb
blob: 5b99ce30e9f06d477693995e2fdab28b2affd44b (plain)
1
2
3
4
5
6
7
# rubocop:disable all
class AddConfidentialToIssues < ActiveRecord::Migration
  def change
    add_column :issues, :confidential, :boolean, default: false
    add_index :issues, :confidential
  end
end