On 19 August 2015 at 16:28, Elizabeth McGurty <[email protected]> wrote: > Pradeep, following pertains to more advanced folks here. I thought that > demonstrating a good solution would be easy, but I am encountering > LocalJumpError: no block given (yield) on transaction_id... I created a > transaction table, and referenced it from User has_many. Folks, what the > problem there?
Transaction is a reserved word (for database transactions oddly enough). Change the model name. Colin t 19, 2015 at 1:06:46 AM UTC-4, Pradeep Achuthan wrote: >> >> I am building an expense tracker application and I am in middle of data >> modelling. I have a Users table. Each user will log his expenses with >> expense type and income with income type. So I need to know how can we set >> up associations for it. >> As per my understanding I have set it up as follows >> >> User has_many :expenses, through: :transactions >> User has_many :incomes, through: :transactions >> >> Expense belongs_to :user >> >> Income belongs_to :user >> >> Here I am not sure what the transaction would associate and also >> expene/income type. >> >> Any suggestions/insights would be great. > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/rubyonrails-talk/d5652e9b-2ac3-49ec-a9c6-a7804230c6b5%40googlegroups.com. > > For more options, visit https://groups.google.com/d/optout. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAL%3D0gLuYxmsh4h__kT4c4VeQyGhYUbEvFuLMqfe%3DXwu-bsTjRw%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.

