gallery/app/models/album_image.rb

17 lines
353 B
Ruby
Raw Normal View History

class AlbumImage
include Mongoid::Document
include Mongoid::Timestamps
include OrbitTag::Taggable
mount_uploader :file, GalleryUploader
field :title
field :description, localize: true
2014-06-13 08:15:13 +00:00
field :rss2_id, type: String
2015-04-16 12:07:54 +00:00
field :order, type: Integer, default: 0
# has_and_belongs_to_many :tags, :class_name => "GalleryTag"
belongs_to :album
end