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

20130211085435_add_issues_tracker_id_to_project.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 56b01cbf8921e321f3a2be00f815b1651185785f (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddIssuesTrackerIdToProject < ActiveRecord::Migration
  def change
    add_column :projects, :issues_tracker_id, :string
  end
end