summaryrefslogtreecommitdiff
path: root/db/migrate/20171222115326_add_confidential_note_events_to_web_hooks.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20171222115326_add_confidential_note_events_to_web_hooks.rb')
-rw-r--r--db/migrate/20171222115326_add_confidential_note_events_to_web_hooks.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/db/migrate/20171222115326_add_confidential_note_events_to_web_hooks.rb b/db/migrate/20171222115326_add_confidential_note_events_to_web_hooks.rb
deleted file mode 100644
index 788a842a3ad..00000000000
--- a/db/migrate/20171222115326_add_confidential_note_events_to_web_hooks.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-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