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

20151005075649_add_user_id_to_build.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0f4b92b8b79f3d587772627bf6cfea01c7125518 (plain)
1
2
3
4
5
class AddUserIdToBuild < ActiveRecord::Migration
  def change
    add_column :ci_builds, :user_id, :integer
  end
end