Files
fetsite/app/models/frage.rb
2013-08-19 19:41:49 +02:00

10 lines
271 B
Ruby

class Frage < ActiveRecord::Base
attr_accessible :text, :title, :thema_id
belongs_to :thema
validates :thema, :presence => true
validates :title, :presence => true
translates :title,:text, :versioning =>true, :fallbacks_for_empty_translations => true
end