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

20160317092222_add_moved_to_to_issue.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8d81d84fd2022a7c441e0d6cef96629fbb1bba7c (plain)
1
2
3
4
5
class AddMovedToToIssue < ActiveRecord::Migration[4.2]
  def change
    add_reference :issues, :moved_to, references: :issues # rubocop:disable Migration/AddReference
  end
end