mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Merge branch '5' into 6
This commit is contained in:
commit
4d26063850
@ -15,7 +15,8 @@ class DBBoolean extends DBField
|
|||||||
{
|
{
|
||||||
public function __construct(?string $name = null, bool|int $defaultVal = 0)
|
public function __construct(?string $name = null, bool|int $defaultVal = 0)
|
||||||
{
|
{
|
||||||
$this->defaultVal = ($defaultVal) ? 1 : 0;
|
$defaultValue = $defaultVal ? 1 : 0;
|
||||||
|
$this->setDefaultValue($defaultValue);
|
||||||
|
|
||||||
parent::__construct($name);
|
parent::__construct($name);
|
||||||
}
|
}
|
||||||
@ -27,7 +28,7 @@ class DBBoolean extends DBField
|
|||||||
'precision' => 1,
|
'precision' => 1,
|
||||||
'sign' => 'unsigned',
|
'sign' => 'unsigned',
|
||||||
'null' => 'not null',
|
'null' => 'not null',
|
||||||
'default' => $this->defaultVal,
|
'default' => $this->getDefaultValue(),
|
||||||
'arrayValue' => $this->arrayValue
|
'arrayValue' => $this->arrayValue
|
||||||
];
|
];
|
||||||
$values = ['type' => 'boolean', 'parts' => $parts];
|
$values = ['type' => 'boolean', 'parts' => $parts];
|
||||||
|
@ -103,6 +103,7 @@ abstract class DBField extends ModelData implements DBIndexable
|
|||||||
* Default value in the database.
|
* Default value in the database.
|
||||||
* Might be overridden on DataObject-level, but still useful for setting defaults on
|
* Might be overridden on DataObject-level, but still useful for setting defaults on
|
||||||
* already existing records after a db-build.
|
* already existing records after a db-build.
|
||||||
|
* @deprecated 5.4.0 Use getDefaultValue() and setDefaultValue() instead
|
||||||
*/
|
*/
|
||||||
protected mixed $defaultVal = null;
|
protected mixed $defaultVal = null;
|
||||||
|
|
||||||
|
@ -13,7 +13,8 @@ class DBFloat extends DBField
|
|||||||
{
|
{
|
||||||
public function __construct(?string $name = null, float|int $defaultVal = 0)
|
public function __construct(?string $name = null, float|int $defaultVal = 0)
|
||||||
{
|
{
|
||||||
$this->defaultVal = is_float($defaultVal) ? $defaultVal : (float) 0;
|
$defaultValue = is_float($defaultVal) ? $defaultVal : (float) 0;
|
||||||
|
$this->setDefaultValue($defaultValue);
|
||||||
|
|
||||||
parent::__construct($name);
|
parent::__construct($name);
|
||||||
}
|
}
|
||||||
@ -23,7 +24,7 @@ class DBFloat extends DBField
|
|||||||
$parts = [
|
$parts = [
|
||||||
'datatype' => 'float',
|
'datatype' => 'float',
|
||||||
'null' => 'not null',
|
'null' => 'not null',
|
||||||
'default' => $this->defaultVal,
|
'default' => $this->getDefaultValue(),
|
||||||
'arrayValue' => $this->arrayValue
|
'arrayValue' => $this->arrayValue
|
||||||
];
|
];
|
||||||
$values = ['type' => 'float', 'parts' => $parts];
|
$values = ['type' => 'float', 'parts' => $parts];
|
||||||
|
@ -16,7 +16,8 @@ class DBInt extends DBField
|
|||||||
{
|
{
|
||||||
public function __construct(?string $name = null, int $defaultVal = 0)
|
public function __construct(?string $name = null, int $defaultVal = 0)
|
||||||
{
|
{
|
||||||
$this->defaultVal = is_int($defaultVal) ? $defaultVal : 0;
|
$defaultValue = is_int($defaultVal) ? $defaultVal : 0;
|
||||||
|
$this->setDefaultValue($defaultValue);
|
||||||
|
|
||||||
parent::__construct($name);
|
parent::__construct($name);
|
||||||
}
|
}
|
||||||
@ -44,7 +45,7 @@ class DBInt extends DBField
|
|||||||
'datatype' => 'int',
|
'datatype' => 'int',
|
||||||
'precision' => 11,
|
'precision' => 11,
|
||||||
'null' => 'not null',
|
'null' => 'not null',
|
||||||
'default' => $this->defaultVal,
|
'default' => $this->getDefaultValue(),
|
||||||
'arrayValue' => $this->arrayValue
|
'arrayValue' => $this->arrayValue
|
||||||
];
|
];
|
||||||
$values = ['type' => 'int', 'parts' => $parts];
|
$values = ['type' => 'int', 'parts' => $parts];
|
||||||
|
Loading…
Reference in New Issue
Block a user