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

20121106143042_add_ref_functionality.rb « migrate « ci « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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