summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorIan Kelly <ian.g.kelly@gmail.com>2007-10-02 15:26:39 +0000
committerIan Kelly <ian.g.kelly@gmail.com>2007-10-02 15:26:39 +0000
commitdad9bae58520f717a411c456fa38729d4385a56e (patch)
tree5fb0e22fe2065109a2736b1293cf76d63b822bd0 /docs
parentd95c0fd0177998f69156cc218a18301110adcb61 (diff)
Fixed #5656: Added a note about needing CREATE TRIGGER privileges
to run syncdb under Oracle. Thanks, jbronn. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6443 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/databases.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/databases.txt b/docs/databases.txt
index 4d8824aa3d..213c2d666c 100644
--- a/docs/databases.txt
+++ b/docs/databases.txt
@@ -175,9 +175,9 @@ operators. You will also need the `cx_Oracle`_ driver, version 4.3.1 or newer.
.. _`cx_Oracle`: http://cx-oracle.sourceforge.net/
To run ``python manage.py syncdb``, you'll need to create an Oracle database
-user with CREATE TABLE, CREATE SEQUENCE, and CREATE PROCEDURE privileges. To
-run Django's test suite, the user also needs CREATE and DROP DATABASE and
-CREATE and DROP TABLESPACE privileges.
+user with CREATE TABLE, CREATE SEQUENCE, CREATE PROCEDURE, and CREATE TRIGGER
+privileges. To run Django's test suite, the user also needs
+CREATE and DROP DATABASE and CREATE and DROP TABLESPACE privileges.
Connecting to the Database
--------------------------