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

20121120113838_add_project_url_to_service.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 13ffbdb192f4152898e8827e473eba7b9ac4590d (plain)
1
2
3
4
5
class AddProjectUrlToService < ActiveRecord::Migration
  def change
    add_column :services, :project_url, :string, null: true
  end
end