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

20150504010250_rename_gitlab_url_to_path.rb « migrate « ci « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6040c320ba51bd60dd3fd45a52d57c479b054914 (plain)
1
2
3
4
5
class RenameGitlabUrlToPath < ActiveRecord::Migration
  def change
    rename_column :projects, :gitlab_url, :path
  end
end