ManageIQ/manageiq-schema

View on GitHub
db/migrate/20180130165200_drop_webmks.rb

Summary

Maintainability
A
0 mins
Test Coverage
class DropWebmks < ActiveRecord::Migration[5.0]
class MiqServer < ActiveRecord::Base; end
class SettingsChange < ActiveRecord::Base; end
 
def up
say_with_time "Remove all VMware MKS console-related records from settings" do
SettingsChange.where(:key => '/server/remote_console_type', :value => 'MKS').delete_all
end
end
end