2011-07-12 08:02:41 +00:00
|
|
|
class DesignFile
|
|
|
|
include Mongoid::Document
|
2011-09-01 01:12:41 +00:00
|
|
|
include Mongoid::Timestamps
|
2011-07-12 08:02:41 +00:00
|
|
|
|
|
|
|
mount_uploader :file, AssetUploader
|
2011-07-14 00:48:42 +00:00
|
|
|
|
|
|
|
field :to_save, :type => Boolean
|
2011-07-19 10:31:53 +00:00
|
|
|
field :to_destroy, :type => Boolean
|
2011-07-12 08:02:41 +00:00
|
|
|
|
|
|
|
end
|