class DatastaxRails::Types::DynamicList
A collection type that allows you to store ordered arrays in Cassandra. Changes are tracked by hooking into ActiveModel's built-in change tracking.
Public Class Methods
new(record, name, collection)
click to toggle source
Calls superclass method
DatastaxRails::Types::DirtyCollection::new
# File lib/datastax_rails/types/dynamic_list.rb, line 9 def initialize(record, name, collection) super(record, name, collection || []) end