Is there a way to unregister model from being seen by Django model manager? I have some unmanaged models that are wrappers around read-only database views and also have foreign keys to 'real' models.
Now, when I'm trying to delete instance of 'real' model that is referenced by unmanaged model, I'm getting OperationalErrors as Django tries to perform cascade delete. As a solution, I'd like to unregister my unmanaged models before .delete(), and re-registering them after, but I don't know how to do it. -- Tomasz Zielinski http://pyconsultant.eu -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

