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

20130123114545_add_issues_tracker_to_project.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 288d0f07c9ae58c6d973cf128dd4241edc6071ff (plain)
1
2
3
4
5
class AddIssuesTrackerToProject < ActiveRecord::Migration
  def change
    add_column :projects, :issues_tracker, :string, default: :gitlab, null: false
  end
end