Я использую Paperclip для сохранения изображений в приложении Rails:
Модель пользователя:
class User < ActiveRecord::Base
has_one :profile
end
Модель профиля:
class Profile < ActiveRecord::Base
has_attached_file :avatar, :styles => {:medium => "300x300>", :thumb => "100x100>"}
belongs_to :user
end
Я пытаюсь удалитьаватар с:
current_user.profile.avatar = nil
current_user.profile.save
, но он не работает.Возможно ли это?