mirror of
https://github.com/wahyd4/Libr.git
synced 2026-08-23 11:46:02 +10:00
8 lines
161 B
Ruby
8 lines
161 B
Ruby
class Book < ActiveRecord::Base
|
|
attr_accessible :author, :image, :isbn, :name, :users
|
|
|
|
has_many :user_to_books
|
|
has_many :users, through: :user_to_books
|
|
|
|
end
|