6 lines
127 B
Ruby
6 lines
127 B
Ruby
|
|
class RegistrationPeriod < ActiveRecord::Base
|
||
|
|
validates :start_date, :end_date, presence: true
|
||
|
|
|
||
|
|
belongs_to :conference
|
||
|
|
end
|