debian-mirror-gitlab/db/migrate/20160728081025_add_pipeline_events_to_web_hooks.rb

17 lines
370 B
Ruby
Raw Normal View History

2016-09-13 17:45:13 +05:30
class AddPipelineEventsToWebHooks < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
add_column_with_default(:web_hooks, :pipeline_events, :boolean,
default: false, allow_null: false)
end
def down
remove_column(:web_hooks, :pipeline_events)
end
end