Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I whould like to use postgreSQL schemas with django, how can I do this?

share|improve this question

5 Answers

up vote 4 down vote accepted

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

db_schema = 'whatever_schema'

in the Meta class or for a global change set

DATABASE_SCHEMA = 'default_schema_name'

in settings.py

share|improve this answer
2  
Somehow in Django 1.3.1 this method doesn't work. – Jack Ha Nov 29 '11 at 15:09
1  
Thats because the patch/fix is not implemented yet. – Peter M Mar 6 '12 at 13:55
Thanks, I figured... – Jack Ha Mar 19 '12 at 14:26

I've been using:

db_table = '"schema"."tablename"'

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.

db_table = 'schema\".\"tablename'

does work so far. Thanks.

share|improve this answer
1  
I don't use PostgreSQL, but this is how I make it work in SQL Server too. – celopes Dec 16 '09 at 20:13
1  
Any trick for creating the schema automatically in syncdb before creating tables? Necessary for running test suites. – akaihola Dec 17 '09 at 9:35

There is no explicit Django support for postgreSQL schemas.

When using Django (0.95), we had to add a search_path to the Django database connector for PostgreSQL, because Django didn't support specifying the schema that the tables managed by the ORM used.

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:

http://news.ycombinator.com/item?id=662901

share|improve this answer
thanks AlbertoPL, I will take a look at these links – Nako Jul 22 '09 at 16:07

I've had some success just saying

db_table = 'schema\".\"tablename'

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...

share|improve this answer

I know that this is a rather old question, but a different solution is to alter the SEARCH_PATH.

Example

Lets say you have three tables.

  1. schema1.table_name_a
  2. schema2.table_name_b
  3. table_name_c

You could run the command:

SET SEARCH_PATH to public,schema1,schema2;

And refer to the tables by their table names only in django.

See 5.7.3. The Schema Search Path

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.