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: 869a3d2be029c2767d8c7cc49eb6027d141ed096 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddProjectIdToCiCommit < ActiveRecord::Migration[4.2]
  def up
    add_column :ci_commits, :gl_project_id, :integer
  end
end