debian-mirror-gitlab/db/migrate/20180103123548_add_confidential_note_events_to_services.rb

17 lines
390 B
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
class AddConfidentialNoteEventsToServices < ActiveRecord::Migration[4.2]
2018-04-05 14:03:07 +05:30
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
add_column :services, :confidential_note_events, :boolean
change_column_default :services, :confidential_note_events, true
end
def down
remove_column :services, :confidential_note_events
end
end