Class: MoneyColumn::ActiveRecordType

Inherits:
ActiveRecord::Type::Decimal
  • Object
show all
Defined in:
lib/money_column/active_record_type.rb

Instance Method Summary collapse

Instance Method Details

#serialize(money) ⇒ Object



2
3
4
5
# File 'lib/money_column/active_record_type.rb', line 2

def serialize(money)
  return nil unless money
  super(money.to_d)
end