Opened 19 years ago

Closed 19 years ago

Last modified 17 years ago

#53 closed defect (fixed)

djonga-admin.py sqlclear fails with entries in auth_permissions tables

Reported by: Dobbes Owned by: Adrian Holovaty
Component: Tools Version:
Severity: normal Keywords:
Cc: Triage Stage: Ready for checkin
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Running the sql output from djonga-admin.py sqlclear blog

BEGIN;
DELETE from content_types WHERE package = 'blog';
DELETE FROM packages WHERE label = 'blog';
DROP TABLE blog_entries;
COMMIT;

Returns the following error:

ERROR: update or delete on "packages" violates foreign key constraint "auth_permissions_package_fkey" on "auth_permissions"
DETAIL: Key (label)=(blog) is still referenced from table "auth_permissions".

This is pretty much what it says that there are still fields in the auth_permissions table that reference the blog package, so it can't be deleted. I created the simple patch for it and will attach.

Attachments (1)

django-admin-sqlclear.patch (748 bytes ) - added by Dobbes 19 years ago.
Patch to fix the sqlclear bug

Download all attachments as: .zip

Change History (2)

by Dobbes, 19 years ago

Attachment: django-admin-sqlclear.patch added

Patch to fix the sqlclear bug

comment:1 by Adrian Holovaty, 19 years ago

Resolution: fixed
Status: newclosed

Fixed in [162].

Note: See TracTickets for help on using tickets.
Back to Top