> I'm trying to use Django for implementing new stuff in some of our legacy > apps. > All the existing apps use PostgreSQL as their database backend. Now in > order to > do this as transparent as possible, I'd like to use a different database > schema > for the contrib apps that come with Django (admin, sessions, etc.). > > Is this even possible? As far as I understand it by now, I don't see a way > to do > this. Can you confirm this or is there a way to move contrib apps into a > different > db schema?
Actually, I found a way to do it but it's quite ugly and I guess it will be easily broken by any Django updates: <code> from django.utils.encoding import smart_unicode class CustomLogEntryManager(models.Manager): def log_action(self, user_id, content_type_id, object_id, object_repr, action_flag, change_message='', change_comment=''): e = self.model(None, None, user_id, content_type_id, smart_unicode(object_id), object_repr[:200], action_flag, change_message, change_comment) e.save() from django.contrib.admin.models import LogEntry LogEntry.add_to_class('change_comment', models.CharField(max_length=255, blank=True)) LogEntry.add_to_class('objects', CustomLogEntryManager()) </code> Then I just override any admin methods that use LogEntry.log_action(...) to also pass a change_comment parameter. Can anyone think of a better way to do this? Btw, I'am using 1.0.2 at the moment. Would v1.1 offer anything that would make this more easy to implement? I'm grateful for any hints, design tips, etc. Thanks, tom. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---