10 lines
194 B
Ruby
10 lines
194 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class AddHealthStatusToIssues < ActiveRecord::Migration[6.0]
|
||
|
DOWNTIME = false
|
||
|
|
||
|
def change
|
||
|
add_column :issues, :health_status, :integer, limit: 2
|
||
|
end
|
||
|
end
|