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: be9d403e002ce59e26ba0b88b84d02829c692c00 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddUserIdToBuild < ActiveRecord::Migration
  def change
    add_column :ci_builds, :user_id, :integer
  end
end