6 lines
97 B
Ruby
6 lines
97 B
Ruby
class Poll
|
|
class Booth < ActiveRecord::Base
|
|
belongs_to :poll
|
|
has_many :voters
|
|
end
|
|
end |