Re: postgres schema support

2008-07-11 Thread Brot
Hello, I think there are a few open-tickets for this topic: http://code.djangoproject.com/ticket/1051 http://code.djangoproject.com/ticket/6148 http://code.djangoproject.com/ticket/2120 Bernd On Jul 11, 3:50 pm, Jon Brisbin <[EMAIL PROTECTED]> wrote: > I hardly ever put anything in the Postgre

Re: postgres schema support

2008-07-11 Thread Scott Moonen
Aah, I think you'll need to create the schema yourself. -- Scott On Fri, Jul 11, 2008 at 10:35 AM, Jon Brisbin <[EMAIL PROTECTED]> wrote: > Will this actually create the schema, though? Or will that have to be done > manually, with Django managing the tables inside the schemas I create > mysel

Re: postgres schema support

2008-07-11 Thread Jon Brisbin
Will this actually create the schema, though? Or will that have to be done manually, with Django managing the tables inside the schemas I create myself? Thanks! Jon Brisibn http://jbrisbin.com On Jul 11, 2008, at 9:01 AM, Scott Moonen wrote: > Hi Jon. I believe you can use the Django model

Re: postgres schema support

2008-07-11 Thread Scott Moonen
Hi Jon. I believe you can use the Django model meta property db_table to specify the schema. According to ticket #6064you need to use somewhat hackneyed syntax at the moment (notice the outer single quotes and the explicit inner double quotes): class My