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: 71763d18aee5be037148417d05d72016dbd6c4ae (plain)
1
2
3
4
5
class AddIssuesTrackerIdToProject < ActiveRecord::Migration
  def change
    add_column :projects, :issues_tracker_id, :string
  end
end