Skip to content

Instantly share code, notes, and snippets.

@gnufied
Created October 15, 2010 22:45
Show Gist options
  • Save gnufied/629101 to your computer and use it in GitHub Desktop.
Save gnufied/629101 to your computer and use it in GitHub Desktop.
class Invoice
proprety :profile_id, :integer
property :total_charge, :decimal , :precision => 4, :scale => 2
property :dyno_charges, :decimal , :precision => 4, :scale => 2
end
class AddonCharge
property :invoice_id, :integer
property :addon_id, :integer
property :days_used, :integer
property :charge, :decimal, :precision => 4, :scale => 2
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment