debian-mirror-gitlab/db/migrate/20191023093207_add_comment_actions_to_services.rb
2020-03-13 15:44:24 +05:30

18 lines
423 B
Ruby

# frozen_string_literal: true
class AddCommentActionsToServices < ActiveRecord::Migration[5.2]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
add_column_with_default(:services, :comment_on_event_enabled, :boolean, default: true) # rubocop:disable Migration/AddColumnWithDefault
end
def down
remove_column(:services, :comment_on_event_enabled)
end
end