7 lines
No EOL
224 B
Ruby
7 lines
No EOL
224 B
Ruby
class CallForPapers < ActiveRecord::Base
|
|
attr_accessible :start_date, :end_date, :hard_deadline, :description, :schedule_changes
|
|
belongs_to :conference
|
|
|
|
validates_presence_of :start_date, :end_date, :hard_deadline
|
|
|
|
end |