First time here? Check out the FAQ!

ib-soft's profile - activity

2013-09-23 10:37:21 -0500 received badge Notable Question (source)
2013-07-24 21:41:43 -0500 received badge Taxonomist
2013-05-28 15:28:02 -0500 received badge Good Question (source)
2013-05-02 22:25:04 -0500 received badge Nice Question (source)
2013-05-02 16:34:40 -0500 received badge Popular Question (source)
2013-05-02 16:33:23 -0500 received badge Favorite Question (source)
2013-01-29 16:12:50 -0500 received badge Student (source)
2013-01-27 23:10:43 -0500 commented answer IntegrityError when updating user

Thanks for the information;) I just came to the same conclusion and I'm going to continue the investigation.

2013-01-21 21:20:12 -0500 commented question IntegrityError when updating user

Tested postgres 8.3 - same problem.

2013-01-21 00:26:10 -0500 commented answer IntegrityError when updating user

There are no problems with primary key. Constraint trigged on foreign key. (Look my comment higher)

2013-01-21 00:14:55 -0500 commented question IntegrityError when updating user

Yes. I deployed askbot as standalone app and still have this problem. Django 1.3.1 and Postgres 9.1.7. I suppose it connected with many to many relation between "auth_user" and "auth_group" (table auth_user_groups). When I deleted all records from table "askbot_groupmembership" user information updated without any exceptions.

2013-01-18 10:53:52 -0500 received badge Editor (source)
2013-01-16 22:58:59 -0500 asked a question IntegrityError when updating user

Hello! I want to integrate askbot to my django project. When I'm trying to update user information using admin interface, i'm getting this exception:

update or delete on table "auth_user_groups" 
violates foreign key constraint "authusergroups_ptr_id_refs_id_7859c44e" 
on table "askbot_groupmembership"

What are the reasons this can happen?