db type for BooleanField

This commit is contained in:
Harris Minhas 2023-08-02 09:19:42 +05:00
parent 64c14c6278
commit 5028769c3b

View File

@ -164,7 +164,7 @@ class FixedStringField(StringField):
class BooleanField(Field): class BooleanField(Field):
# The ClickHouse column type to use # The ClickHouse column type to use
db_type = 'UInt8' db_type = 'Bool'
# The default value # The default value
class_default = False class_default = False