Compare commits

..

2 Commits

Author SHA1 Message Date
Steve Boyd
71f2d7c82d
Merge 3fcdfb4d39 into ba97de9458 2024-10-21 06:29:46 +00:00
Steve Boyd
3fcdfb4d39 NEW Validate DBFields 2024-10-21 19:29:39 +13:00

View File

@ -32,7 +32,7 @@ class DBBoolean extends DBField
'precision' => 1,
'sign' => 'unsigned',
'null' => 'not null',
'default' => $this->getDefaultValue(),
'default' => (int) $this->getDefaultValue(),
'arrayValue' => $this->arrayValue
];
$values = ['type' => 'boolean', 'parts' => $parts];