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?