First time here? Check out the FAQ!

Revision history  [back]

I was able to remove the Facebook login method from the admin account and successfully associate it with my individual account. In order to do this, I deleted the association in the database tables. We use postgres; this is the command I used: delete from django_authopenid_userassociation where user_id = 1 and provider_name = 'facebook'; After deleting the association from the admin account (user_id 1), I was able to add the Facebook login method to my normal account in the usual manner. I may have been able to simply alter the database table, but i wanted to ensure the normal way worked.