class FlattenRecord::Meta::MethodColumn

Public Class Methods

new(parent, method, type, target_model, model, options={}) click to toggle source
Calls superclass method FlattenRecord::Meta::Column::new
# File lib/flatten_record/meta/method_column.rb, line 4
def initialize(parent, method, type, target_model, model, options={})
  @column = Struct.
    new(:name, :default, :type, :null).
    new(method, options[:default], type, options[:null])

  super(parent, @column, target_model, model) 
end