FogBugz #127: Use CarrierWave to upload avatar images.

This commit is contained in:
Roland Jesse 2012-07-01 23:46:38 +02:00
parent 8aab5fe93b
commit 15b6a8e138
6 changed files with 46 additions and 26 deletions

View file

@ -0,0 +1,5 @@
class AddAvatarToContacts < ActiveRecord::Migration
def change
add_column :contacts, :avatar, :string
end
end