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

20200131191754_add_health_status_to_issues.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ca4e797f4b717c036f0514cbcc6393f47d426688 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddHealthStatusToIssues < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    add_column :issues, :health_status, :integer, limit: 2
  end
end