custom_gallery/app/models/custom_album_color.rb

9 lines
253 B
Ruby

class CustomAlbumColor
include Mongoid::Document
include Mongoid::Timestamps
field :color, type: String
field :custom_album_card_background_color, type: String
field :custom_album_card_text_color, type: String
belongs_to :custom_album
end