Merge branch 'master' into openstreetbugs

This commit is contained in:
Tom Hughes 2011-06-22 22:36:43 +01:00
commit 7c98b41cc8
64 changed files with 2178 additions and 218 deletions

View file

@ -0,0 +1,11 @@
class AddOpenId < ActiveRecord::Migration
def self.up
add_column :users, :openid_url, :string
add_index :users, [:openid_url], :name => "user_openid_url_idx", :unique => true
end
def self.down
remove_index :users, :name => "user_openid_url_idx"
remove_column :users, :openid_url
end
end