Adding surveys

This commit is contained in:
Stella Rouzi 2016-06-28 18:16:06 +03:00
parent 69a0d12793
commit 335608e6c4
28 changed files with 434 additions and 21 deletions

View file

@ -0,0 +1,10 @@
class SurveyQuestion < ActiveRecord::Base
belongs_to :survey
# Order of this list should not be changed without proper action!
enum type: [:boolean, :choice, :string, :text, :datetime, :numeric]
ICONS = { boolean: 'dot-circle-o', choice: 'check-square-o', string: 'edit', text: 'align-left', datetime: 'clock-o', numeric: 'slack' }
validates :title, presence: true
end