gitlab-org--gitlab-foss/db/migrate/20151005075649_add_user_id_...

7 lines
140 B
Ruby

# rubocop:disable all
class AddUserIdToBuild < ActiveRecord::Migration
def change
add_column :ci_builds, :user_id, :integer
end
end