mirror of
https://github.com/danbee/danbarberphoto
synced 2025-03-04 08:49:07 +00:00
6 lines
179 B
Ruby
6 lines
179 B
Ruby
class Photo < ActiveRecord::Base
|
|
belongs_to :category
|
|
|
|
has_attached_file :photo, :styles => { :large => "1024x1024>", :thumb => "140x140#", :admin_thumb => "40x40#" }
|
|
end
|