diff options
author | Francis Irving <francis@mysociety.org> | 2010-07-14 16:00:12 +0100 |
---|---|---|
committer | Francis Irving <francis@mysociety.org> | 2010-07-14 16:00:12 +0100 |
commit | 2b91bbb4db04b6f3935478a3f6e8a0fe61fc06fb (patch) | |
tree | 154776728f256f302419913e84882a6991532de5 /db/schema.rb | |
parent | f4164cd4099edcc7c7ad947ce128544d42027498 (diff) |
Remove mapping from photo to user
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/db/schema.rb b/db/schema.rb index 2e6406ad7..d1b682d48 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 => 83) do +ActiveRecord::Schema.define(:version => 84) do create_table "acts_as_xapian_jobs", :force => true do |t| t.string "model", :null => false @@ -144,8 +144,7 @@ ActiveRecord::Schema.define(:version => 83) do 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 + t.binary "data", :null => false end create_table "public_bodies", :force => true do |t| |