Ticket #5776: 5776-alternative.diff
File 5776-alternative.diff, 904 bytes (added by , 17 years ago) |
---|
-
docs/install.txt
74 74 If you plan to use Django's ``manage.py syncdb`` command to 75 75 automatically create database tables for your models, you'll need to 76 76 ensure that Django has permission to create tables in the database 77 you're using ; if you plan to manually create the tables, you can77 you're using. If you plan to manually create the tables, you can 78 78 simply grant Django ``SELECT``, ``INSERT``, ``UPDATE`` and ``DELETE`` 79 permissions .Django does not issue ``ALTER TABLE`` statements, and so79 permissions; Django does not issue ``ALTER TABLE`` statements, and so 80 80 will not require permission to do so. If you will be using Django's 81 81 `testing framework`_ with data fixtures, Django will need permission 82 82 to create a temporary test database.