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: 461e7fb3a9bdf3d0e30879290bd02d777bfc0067 (plain)
1
2
3
4
5
class AddMovedToToIssue < ActiveRecord::Migration
  def change
    add_reference :issues, :moved_to, references: :issues
  end
end