Guest User

Untitled

a guest
Mar 14th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. class Photo < ApplicationRecord
  2. belongs_to :room
  3.  
  4. has_attached_file :image, styles: { medium: "300x300>", thumb: "100x100>" }
  5. validates_attachment_content_type :image, content_type: /\Aimage\/.*\z/
  6.  
  7. end
Add Comment
Please, Sign In to add comment