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

20160728103734_add_pipeline_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: bcd24fe1566b3e6d5befa78886583ce579d56277 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class AddPipelineEventsToServices < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_column_with_default(:services, :pipeline_events, :boolean,
                            default: false, allow_null: false)
  end

  def down
    remove_column(:services, :pipeline_events)
  end
end