8 lines
228 B
Ruby
8 lines
228 B
Ruby
class Poll
|
|
class Booth < ActiveRecord::Base
|
|
has_many :booth_assignments, class_name: "Poll::BoothAssignment"
|
|
has_many :polls, through: :booth_assignments
|
|
|
|
validates :name, presence: true, uniqueness: true
|
|
end
|
|
end |