2020-04-02 00:02:51 +02:00
|
|
|
<?php
|
|
|
|
|
2022-11-18 18:06:46 +01:00
|
|
|
namespace Core\Driver\SQL\Column;
|
2020-04-02 00:02:51 +02:00
|
|
|
|
|
|
|
class BoolColumn extends Column {
|
|
|
|
|
2021-04-02 21:58:06 +02:00
|
|
|
public function __construct(string $name, bool $defaultValue = false) {
|
2020-04-02 00:02:51 +02:00
|
|
|
parent::__construct($name, false, $defaultValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|