require 'kvm/db/oracle' module KVM module Db DB_TYPES = [ 'oracle', 'mysql' ] DB_PLATFORMS = { 'oracle' => KVM::Db::Oracle, 'mysql' => nil } end end