2022-06-17 20:53:35 +02:00
|
|
|
<?php
|
|
|
|
|
2022-11-18 18:06:46 +01:00
|
|
|
namespace Core\Driver\SQL\Column;
|
2022-06-17 20:53:35 +02:00
|
|
|
|
|
|
|
class FloatColumn extends NumericColumn {
|
|
|
|
public function __construct(string $name, bool $nullable, $defaultValue = NULL, ?int $totalDigits = null, ?int $decimalDigits = null) {
|
|
|
|
parent::__construct($name, $nullable, $defaultValue, $totalDigits, $decimalDigits);
|
|
|
|
$this->type = "FLOAT";
|
|
|
|
}
|
|
|
|
}
|