All Questions
Tagged with postgresql-9.0 django
2
questions
0votes
1answer
2kviews
how to generate fixtures for postgresql schema and tables using django
I am using django and postgresql db to develop my project, the db has 3 schemas. And I am writing raw quires using connection string to fetch data and insert data into tables.
Example:
from django....
5votes
2answers
1kviews
Postgresql setting next id to write to
I recently migrated a database from mysql to pgsql 9.
But now when I try to create a new object (in django admin) it tells me that the id I'm trying to use (started at one and has increased each time ...