Compare commits

..

2 Commits

Author SHA1 Message Date
Steve Boyd
ece2214096
Merge 1353028974 into ba97de9458 2024-10-21 04:00:53 +00:00
Steve Boyd
1353028974 NEW Validate DBFields 2024-10-21 17:00:43 +13:00

View File

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