osem-fcy/app/models/lodging.rb
2014-06-16 17:54:38 +05:30

10 lines
395 B
Ruby

class Lodging < ActiveRecord::Base
attr_accessible :name, :description, :photo
belongs_to :venue
has_attached_file :photo,
styles: { thumb: '100x100>', large: '300x300>' }
validates_attachment_content_type :photo,
content_type: [/jpg/, /jpeg/, /png/, /gif/],
size: { in: 0..500.kilobytes }
end