method

store

store(store_attribute, options = {})
public

No documentation available.

# File activerecord/lib/active_record/store.rb, line 104
      def store(store_attribute, options = {})
        serialize store_attribute, IndifferentCoder.new(store_attribute, options[:coder])
        store_accessor(store_attribute, options[:accessors], **options.slice(:prefix, :suffix)) if options.has_key? :accessors
      end