mirror of
https://github.com/django/django.git
synced 2025-02-09 08:55:32 +00:00
Fixed #28854 -- Replaced type(True) with bool in sqlite's SchemaEditor.
This commit is contained in:
parent
4f5526e346
commit
3308085838
@ -37,7 +37,7 @@ class DatabaseSchemaEditor(BaseDatabaseSchemaEditor):
|
||||
except sqlite3.ProgrammingError:
|
||||
pass
|
||||
# Manual emulation of SQLite parameter quoting
|
||||
if isinstance(value, type(True)):
|
||||
if isinstance(value, bool):
|
||||
return str(int(value))
|
||||
elif isinstance(value, (Decimal, float, int)):
|
||||
return str(value)
|
||||
|
Loading…
x
Reference in New Issue
Block a user