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:
|
except sqlite3.ProgrammingError:
|
||||||
pass
|
pass
|
||||||
# Manual emulation of SQLite parameter quoting
|
# Manual emulation of SQLite parameter quoting
|
||||||
if isinstance(value, type(True)):
|
if isinstance(value, bool):
|
||||||
return str(int(value))
|
return str(int(value))
|
||||||
elif isinstance(value, (Decimal, float, int)):
|
elif isinstance(value, (Decimal, float, int)):
|
||||||
return str(value)
|
return str(value)
|
||||||
|
|
Loading…
Reference in New Issue