Displaying 1 result from an estimated 1 matches for "submitted_books".
2006 Jun 13
0
question about saving associations when using has_many :through
...lows us to retrieve the users who have
# been assigned to review this book
has_many :reviewing_users, :through => :book_reviews, :source => :user
# each book is submitted by a single user
belongs_to :user
end
user.rb
# each user must submit a number of books each month
has_many :submitted_books, :class_name => "Book", :dependent => :delete_all
# each user has a list of books that they are required to review
has_many :book_reviews, :dependent => true
# this :through association allows us to retrieve the books the user
# is required to review
has_many :books_t...