diff options
Diffstat (limited to 'app/models/profile_photo.rb')
-rw-r--r-- | app/models/profile_photo.rb | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/app/models/profile_photo.rb b/app/models/profile_photo.rb index 23c85c133..4cf32ef4b 100644 --- a/app/models/profile_photo.rb +++ b/app/models/profile_photo.rb @@ -1,10 +1,20 @@ +# == Schema Information +# Schema version: 80 +# +# Table name: profile_photos +# +# id :integer not null, primary key +# data :binary not null +# user_id :integer not null +# + # models/profile_photo.rb: # Image of user that goes on their profile. # # Copyright (c) 2009 UK Citizens Online Democracy. All rights reserved. # Email: francis@mysociety.org; WWW: http://www.mysociety.org/ # -# $Id: profile_photo.rb,v 1.1 2009-08-05 16:31:11 francis Exp $ +# $Id: profile_photo.rb,v 1.2 2009-09-17 21:10:05 francis Exp $ # require 'mahoro' require 'RMagick' |