summaryrefslogtreecommitdiff
path: root/db/ci/migrate/20130531122131_remove_path_field_from_project.rb
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