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

20111025134235_add_high_label_to_issue.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 676eaaf8c1ba1de5dfa273dc3229da7fae5d2152 (plain)
1
2
3
4
5
class AddHighLabelToIssue < ActiveRecord::Migration
  def change
    add_column :issues, :critical, :boolean, :default => false, :null => false
  end
end