I whould like to use postgreSQL schemas with django, how can I do this?
|
|
|
It's a bit more complicated then fancy then tricky escaping. Have a look at Ticket #6148 in Django for perhaps a solution or at least a patch. It does some minor changes deep in the django.db core but it will hopefully be officially included in django. After that it's just a matter of saying
in the Meta class or for a global change set
in settings.py |
|||
|
I've been using:
in the past without realising that only work for read-only operation. When you try to add new record it would fail because the sequence would be something like "schema.tablename"_column_id_seq.
does work so far. Thanks. |
|||
|
There is no explicit Django support for postgreSQL schemas.
Taken from: http://nxsy.org/using-postgresql-schemas-with-sqlalchemy-and-elixir The general response is to use SQLAlchemy to construct the SQL properly. Oh, and here's another link with some suggestions about what you can do with the Django base, extending it to try to support your scheme: |
|||
|
|
|
I've had some success just saying
in the Meta class, but that's really ugly. And I've only used it in limited scenarios - it may well break if you try something complicated. And as said earlier, it's not really supported... |
|||
|
|
|
I know that this is a rather old question, but a different solution is to alter the SEARCH_PATH. ExampleLets say you have three tables.
You could run the command:
And refer to the tables by their table names only in django. |
|||
|
|