No point in changing the name of the OpenID identity column in users table. Use the existing one.

This commit is contained in:
Eric Allen 2008-12-08 18:51:33 -05:00
parent c46e5a9e1d
commit 611a53e668
5 changed files with 19 additions and 23 deletions

View file

@ -12,8 +12,6 @@ class UpgradeOpenId < ActiveRecord::Migration
t.string :salt, :null => false
end
add_column :users, :identity_url, :string
drop_table :open_id_associations
drop_table :open_id_nonces
drop_table :open_id_settings
@ -41,7 +39,5 @@ class UpgradeOpenId < ActiveRecord::Migration
t.string "setting"
t.binary "value"
end
remove_column :users, :identity_url
end
end