mirror of
https://github.com/django/django.git
synced 2025-09-08 11:40:48 +00:00
[py3] Removed longs.
This commit is contained in:
parent
f1d5dc81ac
commit
56dbe924a6
26 changed files with 99 additions and 78 deletions
|
@ -243,7 +243,7 @@ class DatabaseOperations(BaseDatabaseOperations):
|
|||
|
||||
def no_limit_value(self):
|
||||
# 2**64 - 1, as recommended by the MySQL documentation
|
||||
return 18446744073709551615L
|
||||
return 18446744073709551615
|
||||
|
||||
def quote_name(self, name):
|
||||
if name.startswith("`") and name.endswith("`"):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue