summaryrefslogtreecommitdiff
path: root/db/ci/migrate/20121106143042_add_ref_functionality.rb
blob: 0c26571e3057d167aef20170979c7f50f3061ef5 (plain)
1
2
3
4
5
6
7
8
9
10
class AddRefFunctionality < ActiveRecord::Migration
  def change
    rename_column :builds, :commit_ref, :ref  
    add_column :builds, :sha, :string
    add_column :projects, :default_ref, :string
  end

  def down
  end
end