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