Displaying 1 result from an estimated 1 matches for "addattachmenttopolici".
Did you mean:
addattachmenttopolicies
2009 Sep 03
12
paperclip is not saving the files
...l,
I''ve installed paperclips but
paperclip is not saving the files
my model has
has_attached_file :attachment,:styles => { :medium => "300x300>",
:thumb => "100x100>" }
and i have db migration as
class AddAttachmentToPolicies < ActiveRecord::Migration
def self.up
add_column :policies, :attachment_file_name, :string
add_column :policies, :attachment_content_type, :string
add_column :policies, :attachment_file_size, :integer
end
def self.down
remove_column :policies, :attachment_file_name
r...