Ticket #5776: 5776-alternative.diff

File 5776-alternative.diff, 904 bytes (added by arien <regexbot@…>, 16 years ago)
  • docs/install.txt

     
    7474If you plan to use Django's ``manage.py syncdb`` command to
    7575automatically create database tables for your models, you'll need to
    7676ensure that Django has permission to create tables in the database
    77 you're using; if you plan to manually create the tables, you can
     77you're using. If you plan to manually create the tables, you can
    7878simply grant Django ``SELECT``, ``INSERT``, ``UPDATE`` and ``DELETE``
    79 permissions. Django does not issue ``ALTER TABLE`` statements, and so
     79permissions; Django does not issue ``ALTER TABLE`` statements, and so
    8080will not require permission to do so. If you will be using Django's
    8181`testing framework`_ with data fixtures, Django will need permission
    8282to create a temporary test database.
Back to Top