Guest User

Untitled

a guest
Jun 20th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. class Podcast < ActiveRecord::Base
  2.  
  3. # Validations
  4. #
  5. validates_presence_of :title, :file
  6.  
  7. # Macros
  8. #
  9. upload_column :file,
  10. :extensions => ["mp3", "ogg"],
  11. :root_dir => File.join(RAILS_ROOT, "public", "system"),
  12. :web_root => "/system"
  13.  
  14.  
  15. end
Add Comment
Please, Sign In to add comment