orbit-basic/app/models/i18n_variable.rb

11 lines
204 B
Ruby
Raw Normal View History

class I18nVariable
include Mongoid::Document
2011-03-08 09:25:46 +00:00
include Mongoid::Timestamps
field :key
2011-01-28 06:44:08 +00:00
field :document_class, :type => String
field :parent_id, :type => BSON::ObjectId, :index => true
end