summaryrefslogtreecommitdiff
path: root/db/migrate/20200131181354_add_health_status_to_epics.rb
blob: 4e5f9ab138d836b90eeacb3173ac461bf48ee9a0 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

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