diff options
author | francis <francis> | 2009-08-05 16:31:10 +0000 |
---|---|---|
committer | francis <francis> | 2009-08-05 16:31:10 +0000 |
commit | 0610eeb4597138723cce97dcd0c4702a0de0dbcd (patch) | |
tree | 73c3c36b700911f41ac5b2be08aee36efd99085b /db/schema.rb | |
parent | 9d3f7b1d205e36768e0910d4748ee913cb8df60f (diff) |
Some (as yet unused) profile photo code done on a whim on the train while it
was my birthday.
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb index 7055727eb..78f0ed992 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -9,7 +9,7 @@ # # It's strongly recommended to check this file into your version control system. -ActiveRecord::Schema.define(:version => 78) do +ActiveRecord::Schema.define(:version => 79) do create_table "acts_as_xapian_jobs", :force => true do |t| t.string "model", :null => false @@ -142,6 +142,11 @@ ActiveRecord::Schema.define(:version => 78) do add_index "post_redirects", ["token"], :name => "index_post_redirects_on_token" add_index "post_redirects", ["updated_at"], :name => "index_post_redirects_on_updated_at" + create_table "profile_photos", :force => true do |t| + t.binary "data", :null => false + t.integer "user_id", :null => false + end + create_table "public_bodies", :force => true do |t| t.text "name", :null => false t.text "short_name", :null => false @@ -236,6 +241,7 @@ ActiveRecord::Schema.define(:version => 78) do t.datetime "last_daily_track_email", :default => '2000-01-01 00:00:00' t.string "admin_level", :default => "none", :null => false t.text "ban_text", :default => "", :null => false + t.integer "profile_photo_id" end add_index "users", ["url_name"], :name => "index_users_on_url_name", :unique => true |