This repository has been archived on 2024-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
orbit-4-1/app/models/snippet.rb

10 lines
212 B
Ruby
Raw Normal View History

2010-01-04 07:52:30 +00:00
class Snippet
2010-01-04 07:52:30 +00:00
include MongoMapper::Document
2010-01-11 09:09:50 +00:00
key :name, String, :required => true, :index => true
2010-01-18 07:52:52 +00:00
key :parent_name, String, :required => true, :index => true
2010-01-08 07:32:44 +00:00
key_i18n :content, String
end