1
0
mirror of https://github.com/danbee/danbarberphoto synced 2025-03-04 08:49:07 +00:00
danbarberphoto/app/models/photo.rb
2010-10-08 05:51:47 -04:00

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