Created
February 17, 2009 21:43
-
-
Save sprite2005/66003 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>> @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