lib/ish/invoice.rb in ish_models-0.0.33.100 vs lib/ish/invoice.rb in ish_models-0.0.33.103
- old
+ new
@@ -14,13 +14,13 @@
field :email, :type => String
field :number, :type => Integer
increments :number
- field :amount, :type => Float
+ field :amount, :type => Integer
has_many :payments, :class_name => 'Ish::Payment'
- field :paid_amount, :type => Float, :default => 0
+ field :paid_amount, :type => Integer, :default => 0
field :description, :type => String
end