Skip to content

Instantly share code, notes, and snippets.

@sprite2005
Created February 17, 2009 21:43
Show Gist options
  • Save sprite2005/66003 to your computer and use it in GitHub Desktop.
Save sprite2005/66003 to your computer and use it in GitHub Desktop.
>> @item
=> #<TransactionItemDeposit id: 3, type: "TransactionItemDeposit", transaction_sender_account_id: nil, transaction_receiver_account_id: 1, transaction_object_id: nil, transaction_o
bject_type: nil, description: "signup bonus", cents: 2099, currency: "USD", status: "Complete", created_at: "2009-02-17 13:39:06", updated_at: "2009-02-17 13:39:06">
>> @item.save
=> true
>> @item
=> #<TransactionItemDeposit id: 3, type: "TransactionItemDeposit", transaction_sender_account_id: nil, transaction_receiver_account_id: 1, transaction_object_id: nil, transaction_o
bject_type: nil, description: "signup bonus", cents: 2099, currency: "USD", status: "Complete", created_at: "2009-02-17 13:39:06", updated_at: "2009-02-17 13:39:06">
>> TransactionItem.find(3)
=> #<TransactionItemDeposit id: 3, type: "TransactionItemDeposit", transaction_sender_account_id: nil, transaction_receiver_account_id: 1, transaction_object_id: nil, transaction_o
bject_type: nil, description: "signup bonus", cents: 2099, currency: "USD", status: "Pending", created_at: "2009-02-17 13:39:06", updated_at: "2009-02-17 13:39:06">
>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment