7 lines
168 B
Ruby
7 lines
168 B
Ruby
class Booth < ActiveRecord::Base
|
|
belongs_to :conference
|
|
has_many :booth_requests
|
|
has_many :users, through: :booth_requests
|
|
|
|
validate :title, presence: true
|
|
end
|