summaryrefslogtreecommitdiff
path: root/docs/ref/databases.txt
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-09-12 16:27:30 -0400
committerTim Graham <timograham@gmail.com>2015-09-23 19:31:11 -0400
commit54848a96dd4a196e81f3d71c61caf84ea8b49f4e (patch)
tree0fe3e51fc3f783adc69c46bb0313514f207f71ab /docs/ref/databases.txt
parent48e7787db599b0103daf70f0ff4968d90b8540aa (diff)
Removed versionadded/changed annotations for 1.8.
Diffstat (limited to 'docs/ref/databases.txt')
-rw-r--r--docs/ref/databases.txt15
1 files changed, 0 insertions, 15 deletions
diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt
index 2d866c5ae0..dec59915dc 100644
--- a/docs/ref/databases.txt
+++ b/docs/ref/databases.txt
@@ -544,15 +544,6 @@ executing a command like::
or using a :class:`~django.db.migrations.operations.RunSQL` operation in a
:ref:`data migration <data-migrations>`.
-.. versionchanged:: 1.8
-
- Previously, Django truncated fractional seconds from ``datetime`` and
- ``time`` values when using the MySQL backend. Now it lets the database
- decide whether it should drop that part of the value or not. By default, new
- ``DateTimeField`` or ``TimeField`` columns are now created with fractional
- seconds support on MySQL 5.6.4 or later with either mysqlclient or
- MySQLdb 1.2.5 or later.
-
``TIMESTAMP`` columns
~~~~~~~~~~~~~~~~~~~~~
@@ -756,12 +747,6 @@ Some test suites also create views; to run these, the user also needs
the CREATE VIEW WITH ADMIN OPTION privilege. In particular, this is needed
for Django's own test suite.
-.. versionchanged:: 1.8
-
- Prior to Django 1.8, the test user was granted the CONNECT and RESOURCE
- roles, so the extra privileges required for running the test suite were
- different.
-
All of these privileges are included in the DBA role, which is appropriate
for use on a private developer's database.