summaryrefslogtreecommitdiff
path: root/db/migrate/20130211085435_add_issues_tracker_id_to_project.rb
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