Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20160223192159_add_confidential_to_issues.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e9d47fd589aff45f4de9c10db52b066074e05131 (plain)
1
2
3
4
5
6
class AddConfidentialToIssues < ActiveRecord::Migration
  def change
    add_column :issues, :confidential, :boolean, default: false
    add_index :issues, :confidential
  end
end