virtual_community.rb 183 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 class VirtualCommunity < ActiveRecord::Base has_many :domains, :as => :owner serialize :configuration, Hash def configuration self[:configuration] ||= Hash.new end end