Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

this is what i am trying to make: http://i45.tinypic.com/vfjtdj.png how should be the model for those tables? i need something like this?

for institutions

class institution < ActiveRecord::Base  

  has_many: users 
  has_many: typeofloans

end

for users

class user < ActiveRecord::Base  

  has_many: loans
  belongs_to: institution

end

for loans

class typeofloan < ActiveRecord::Base  

  has_many: loans 
  belongs_to: institution

end

for typeofloans

class user < ActiveRecord::Base  

  has_many: loans
  belongs_to: institution

end

for quotes

class quote < ActiveRecord::Base  

  belogns_to: loans

end

this will work like in the image? or am very very wrong?

share|improve this question
1  
Why not try a few usecases and find out? It's pretty quick to iterate, and IMO you'll learn qute a bit in the process. – Dave Newton Feb 6 at 19:57
thanks, ill try, but i have a doubt, i created users and loans table earlier, if i put belogns_to and has_many in the model, i need to do rake db:migrate or something more? or just with that in my models, i can make tests? – xploshioOn Feb 6 at 20:02
i think, type of loans should probably belong to loans – bernabas Feb 6 at 20:24
emm i dont think so, because a loan belongs to an specific type and a type of loans, can have a lot of loans... – xploshioOn Feb 6 at 20:34

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.