5 lines
119 B
Ruby
5 lines
119 B
Ruby
class Poll < ActiveRecord::Base
|
|
has_many :booths
|
|
has_many :voters, through: :booths, class_name: "Poll::Voter"
|
|
end
|