5 lines
107 B
Ruby
5 lines
107 B
Ruby
class Article < ActiveRecord::Base
|
|
has_many :readings
|
|
has_many :users, :through => :readings
|
|
end
|
|
|