Introduce Booths to OSEM

This commit is contained in:
nasia 2017-05-17 13:31:27 +03:00
parent 4d895ae3bc
commit 66ac45efc8
15 changed files with 268 additions and 1 deletions

View file

@ -0,0 +1,10 @@
class BoothRequest < ActiveRecord::Base
belongs_to :booth
belongs_to :user
validates :booth,
:user,
:role,
presence: true
end