Changes between Initial Version and Version 1 of Ticket #25819
- Timestamp:
- Nov 26, 2015, 8:21:42 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #25819 – Description
initial v1 1 1 ./manage.py sql $appname currently opens a full database connection to the server. 2 2 3 This is inconvenient for example when developing against a local sqlite and wanting to expect the resulting database scema which would e used on the production postgres system. having your local development codebase copied to the production system and having it there connect to the production database isn't really an alternative 3 This is inconvenient for example when developing against a local sqlite and wanting to expect the resulting database scema which would e used on the production postgres system. having your local development codebase copied to the production system and having it there connect to the production database isn't really an alternative. 4 5 This happens e.g. when you codevelop non-django-ORM consumers on the same database