10 lines
170 B
Ruby
10 lines
170 B
Ruby
class BoothRequest < ActiveRecord::Base
|
|
belongs_to :booth
|
|
belongs_to :user
|
|
|
|
validates :booth,
|
|
:user,
|
|
:role,
|
|
presence: true
|
|
|
|
end
|