Sha256: 9aac4789cf01c78cedaba1e9f0ab170269baa957b4c1c7519979932a4a347f9d
Contents?: true
Size: 360 Bytes
Versions: 9
Compression:
Stored size: 360 Bytes
Contents
module FlattenRecord module Meta class MethodColumn < Column 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 end end end
Version data entries
9 entries across 9 versions & 1 rubygems