diff --git a/docs/releases/1.7.txt b/docs/releases/1.7.txt
index 52edbb4..d0fe0a5 100644
a
|
b
|
Miscellaneous
|
1247 | 1247 | The :attr:`~django.core.validators.RegexValidator.flags` attribute was added |
1248 | 1248 | to :class:`~django.core.validators.RegexValidator` to simplify this change. |
1249 | 1249 | |
| 1250 | * When running tests on PostgreSQL, the :setting:`USER` will need read access |
| 1251 | to the built-in ``postgres`` database. This is in lieu of the previous |
| 1252 | behavior of connecting to the actual non-test database. |
| 1253 | |
1250 | 1254 | .. _deprecated-features-1.7: |
1251 | 1255 | |
1252 | 1256 | Features deprecated in 1.7 |
diff --git a/docs/topics/testing/overview.txt b/docs/topics/testing/overview.txt
index 4c7e67c..db7c074 100644
a
|
b
|
entirely!). If you want to use a different database name, specify
|
173 | 173 | :setting:`NAME <TEST_NAME>` in the :setting:`TEST <DATABASE-TEST>` |
174 | 174 | dictionary for any given database in :setting:`DATABASES`. |
175 | 175 | |
| 176 | .. versionchanged:: 1.7 |
| 177 | |
| 178 | On PostgreSQL, :setting:`USER` will also need read access to the built-in |
| 179 | ``postgres`` database. |
| 180 | |
176 | 181 | Aside from using a separate database, the test runner will otherwise |
177 | 182 | use all of the same database settings you have in your settings file: |
178 | 183 | :setting:`ENGINE <DATABASE-ENGINE>`, :setting:`USER`, :setting:`HOST`, etc. The |