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

20130531122131_remove_path_field_from_project.rb « migrate « ci « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 684c16470a4451a314c0bd771f07cc78d7b280b2 (plain)
1
2
3
4
5
6
7
8
class RemovePathFieldFromProject < ActiveRecord::Migration
  def up
    remove_column :projects, :path
  end

  def down
  end
end