Issue tracker field added to projects

This commit is contained in:
Andrew8xx8 2013-01-23 18:13:28 +04:00
parent 8f621c9e06
commit e6d2e56961
9 changed files with 69 additions and 315 deletions

View file

@ -0,0 +1,5 @@
class AddIssuesTrackerToProject < ActiveRecord::Migration
def change
add_column :projects, :issues_tracker, :string, default: :gitlab, null: false
end
end