1
0
mirror of https://github.com/django/django.git synced 2025-06-07 12:39:12 +00:00

Edited docs/install.txt changes from [6794]

git-svn-id: http://code.djangoproject.com/svn/django/trunk@6877 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2007-12-04 06:07:44 +00:00
parent ece222ade5
commit 140e60e540

View File

@ -76,14 +76,12 @@ automatically create database tables for your models, you'll need to
ensure that Django has permission to create and alter tables in the ensure that Django has permission to create and alter tables in the
database you're using; if you plan to manually create the tables, you database you're using; if you plan to manually create the tables, you
can simply grant Django ``SELECT``, ``INSERT``, ``UPDATE`` and can simply grant Django ``SELECT``, ``INSERT``, ``UPDATE`` and
``DELETE`` permissions. On some databases, Django will need to have ``DELETE`` permissions. On some databases, Django will need
``ALTER TABLE`` privileges during ``syncdb`` (in order to create ``ALTER TABLE`` privileges during ``syncdb`` but won't issue
foreign key constraints properly on databases which do not allow them ``ALTER TABLE`` statements on a table once ``syncdb`` has created it.
to be deferred), but will not issue ``ALTER TABLE`` statements on a
table once ``syncdb`` has finished setting it up.
If you will be using Django's `testing framework`_ with data fixtures, If you're using Django's `testing framework`_ to test database queries,
Django will need permission to create a temporary test database. Django will need permission to create a test database.
.. _PostgreSQL: http://www.postgresql.org/ .. _PostgreSQL: http://www.postgresql.org/
.. _MySQL: http://www.mysql.com/ .. _MySQL: http://www.mysql.com/