debian-mirror-gitlab/db/migrate/20171222115326_add_confidential_note_events_to_web_hooks.rb
2019-02-15 15:39:39 +05:30

16 lines
323 B
Ruby

class AddConfidentialNoteEventsToWebHooks < ActiveRecord::Migration[4.2]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
add_column :web_hooks, :confidential_note_events, :boolean
end
def down
remove_column :web_hooks, :confidential_note_events
end
end