summaryrefslogtreecommitdiff
path: root/db/migrate/20200511092246_add_epic_id_to_resource_state_events.rb
blob: 85d965972aa7d683bea8814511d85bd53a93404e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

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

  INDEX_NAME = 'index_resource_state_events_on_epic_id'

  def up
    add_column :resource_state_events, :epic_id, :integer
    add_index :resource_state_events, :epic_id, name: INDEX_NAME # rubocop:disable Migration/AddIndex
  end

  def down
    remove_index  :resource_state_events, name: INDEX_NAME # rubocop:disable Migration/RemoveIndex
    remove_column :resource_state_events, :epic_id, :integer
  end
end