Use this tag for PostgreSQL issues which are to be solved in accordance with Django coding best practices.

learn more… | top users | synonyms

0
votes
1answer
51 views

Does a reverse sql inspector exist for django & postgres

Does a reverse sql inspector exist for django & postgres? Something that shows you what is the origin of the sql view in django? Something like this: https://github.com/rory/django-sql-inspector, ...
0
votes
1answer
73 views

django & sql - how can I efficiently store and update sort order information associated with records in my database table?

So I have a Django app and one of the tables is basically a list of items. The user may choose to rearrange the order of this list. When they do this, I want to preserve this information so that the ...