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

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

class AddSourcingEpicDates < ActiveRecord::Migration[5.1]
  DOWNTIME = false

  def change
    add_column :epics, :start_date_sourcing_epic_id, :integer
    add_column :epics, :due_date_sourcing_epic_id, :integer
  end
end