mirror of
https://github.com/wahyd4/Libr.git
synced 2026-08-24 20:26:09 +10:00
6 lines
144 B
Ruby
6 lines
144 B
Ruby
class User < ActiveRecord::Base
|
|
attr_accessible :email, :name, :books
|
|
has_many :user_to_books
|
|
has_many :books, through: :user_to_books
|
|
end
|