diff options
author | Jon Dufresne <jon.dufresne@gmail.com> | 2018-09-25 23:48:47 -0700 |
---|---|---|
committer | Claude Paroz <claude@2xlibre.net> | 2018-09-26 08:48:47 +0200 |
commit | 82f286cf6f198d37850d3c5df637b5665566a66b (patch) | |
tree | bf8d7b8d45ee9bcf033ecbd35d73f98f3f58d87e /django/db/backends/mysql/operations.py | |
parent | d1d5c97bc2821bf8c0f4b2d9c7ab16200845b494 (diff) | |
download | django-82f286cf6f198d37850d3c5df637b5665566a66b.tar.gz |
Refs #29784 -- Switched to https:// links where available.
Diffstat (limited to 'django/db/backends/mysql/operations.py')
-rw-r--r-- | django/db/backends/mysql/operations.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/backends/mysql/operations.py b/django/db/backends/mysql/operations.py index 877c32b6a7..8a43c907ac 100644 --- a/django/db/backends/mysql/operations.py +++ b/django/db/backends/mysql/operations.py @@ -32,7 +32,7 @@ class DatabaseOperations(BaseDatabaseOperations): explain_prefix = 'EXPLAIN' def date_extract_sql(self, lookup_type, field_name): - # http://dev.mysql.com/doc/mysql/en/date-and-time-functions.html + # https://dev.mysql.com/doc/mysql/en/date-and-time-functions.html if lookup_type == 'week_day': # DAYOFWEEK() returns an integer, 1-7, Sunday=1. # Note: WEEKDAY() returns 0-6, Monday=0. |