summaryrefslogtreecommitdiff
path: root/db/migrate/20151005075649_add_user_id_to_build.rb
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