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

20150924125150_add_project_id_to_ci_commit.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1a761fe0f863f057b676bef372fb33cd094020a1 (plain)
1
2
3
4
5
class AddProjectIdToCiCommit < ActiveRecord::Migration
  def up
    add_column :ci_commits, :gl_project_id, :integer
  end
end