debian-mirror-gitlab/db/migrate/20171222115326_add_confidential_note_events_to_web_hooks.rb
2018-04-05 14:03:07 +05:30

16 lines
318 B
Ruby

class AddConfidentialNoteEventsToWebHooks < ActiveRecord::Migration
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