Flowdock
store(store_attribute, options = {}) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/store.rb, line 106
      def store(store_attribute, options = {})
        coder = build_column_serializer(store_attribute, options[:coder], Object, options[:yaml])
        serialize store_attribute, coder: IndifferentCoder.new(store_attribute, coder)
        store_accessor(store_attribute, options[:accessors], **options.slice(:prefix, :suffix)) if options.has_key? :accessors
      end
Register or log in to add new notes.