2018-11-13 02:27:31 -05:00
|
|
|
class AddPipelineEventsToServices < ActiveRecord::Migration[4.2]
|
2016-08-02 06:06:31 -04:00
|
|
|
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
|