mirror of
https://github.com/wahyd4/Libr.git
synced 2026-08-09 12:56:14 +10:00
9 lines
111 B
Ruby
9 lines
111 B
Ruby
class UserToBook < ActiveRecord::Base
|
|
|
|
attr_accessible :user, :book
|
|
|
|
belongs_to :user
|
|
belongs_to :book
|
|
|
|
end
|