diff options
| author | Садовский Николай <sns1081@gmail.com> | 2013-07-06 09:38:33 +0700 |
|---|---|---|
| committer | Shai Berger <shai@platonix.com> | 2013-09-09 14:02:21 +0300 |
| commit | e4274e3da1160997bc78c09ca8f634e04d7438d2 (patch) | |
| tree | 9598bbd6f449b4e4d76cad8aacb9d342bf6e2c6d | |
| parent | b085e7c3033d49e4d7525bacb1f34340730918a8 (diff) | |
[1.6.x] Fixed #20707 -- Added explicit quota assignment to Oracle test user
To enable testing on Oracle 12c
| -rw-r--r-- | django/db/backends/oracle/creation.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/django/db/backends/oracle/creation.py b/django/db/backends/oracle/creation.py index c7808e4849..2f2f3912db 100644 --- a/django/db/backends/oracle/creation.py +++ b/django/db/backends/oracle/creation.py @@ -172,6 +172,7 @@ class DatabaseCreation(BaseDatabaseCreation): IDENTIFIED BY %(password)s DEFAULT TABLESPACE %(tblspace)s TEMPORARY TABLESPACE %(tblspace_temp)s + QUOTA UNLIMITED ON %(tblspace)s """, """GRANT CONNECT, RESOURCE TO %(user)s""", ] |
