Newer
Older
dmpopidor / app / models / option_warning.rb
@Marta Ribeiro Marta Ribeiro on 3 Jun 2016 238 bytes DMPonline4 - RAILS 4.0 (#4)
class OptionWarning < ActiveRecord::Base
  
	#associations between tables
	belongs_to :option
	belongs_to :organisation
	
    attr_accessible :text, :option_id, :organisation_id, :as => [:default, :admin]
  
	def to_s
		"#{text}"
	end
end