Skip to content

Instantly share code, notes, and snippets.

@dallarosa
Created January 14, 2011 08:44
Show Gist options
  • Save dallarosa/779371 to your computer and use it in GitHub Desktop.
Save dallarosa/779371 to your computer and use it in GitHub Desktop.
class Task < ActiveRecord::Base
attr_accessor :infile_file_name
attr_accessor :infile_content_type
attr_accessor :infile_file_size
attr_accessor :infile_updated_at
validates_presence_of :name
has_attached_file :infile, :path => ":rails_root/public/system/:user_id/:project_id/:id/:filename"
belongs_to :project
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment