7 lines
131 B
Ruby
Executable File
7 lines
131 B
Ruby
Executable File
class Newsgroup < ActiveRecord::Base
|
|
|
|
has_many :customer_newsgroups
|
|
has_many :customers, :through => :customer_newsgroups
|
|
|
|
end
|