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

20151203162134_add_build_events_to_services.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a84be7db3f15ba2d87f54bdd52560df34021c2af (plain)
1
2
3
4
5
6
class AddBuildEventsToServices < ActiveRecord::Migration
  def up
    add_column :services, :build_events, :boolean, default: false, null: false
    add_column :web_hooks, :build_events, :boolean, default: false, null: false
  end
end