11 lines
278 B
Ruby
11 lines
278 B
Ruby
class Frage < ActiveRecord::Base
|
|
has_paper_trail
|
|
attr_accessible :text, :title
|
|
belongs_to :thema
|
|
|
|
validates :thema, :presence => true
|
|
validates :title, :presence => true
|
|
|
|
translates :title,:text, :versioning =>true, :fallbacks_for_empty_translations => true
|
|
end
|