Django

Code

Changeset 6877

Show
Ignore:
Timestamp:
12/04/07 00:07:44 (1 year ago)
Author:
adrian
Message:

Edited docs/install.txt changes from [6794]

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/install.txt

    r6794 r6877  
    7777database you're using; if you plan to manually create the tables, you 
    7878can simply grant Django ``SELECT``, ``INSERT``, ``UPDATE`` and 
    79 ``DELETE`` permissions. On some databases, Django will need to have 
    80 ``ALTER TABLE`` privileges during ``syncdb`` (in order to create 
    81 foreign key constraints properly on databases which do not allow them 
    82 to be deferred), but will not issue ``ALTER TABLE`` statements on a 
    83 table once ``syncdb`` has finished setting it up. 
    84  
    85 If you will be using Django's `testing framework`_ with data fixtures, 
    86 Django will need permission to create a temporary test database. 
     79``DELETE`` permissions. On some databases, Django will need 
     80``ALTER TABLE`` privileges during ``syncdb`` but won't issue 
     81``ALTER TABLE`` statements on a table once ``syncdb`` has created it. 
     82 
     83If you're using Django's `testing framework`_ to test database queries, 
     84Django will need permission to create a test database. 
    8785 
    8886.. _PostgreSQL: http://www.postgresql.org/