10 lines
271 B
Ruby
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
|