web-base/core/Driver/SQL/Column/BigIntColumn.php
2021-12-08 16:54:53 +01:00

13 lines
305 B
PHP

<?php
namespace Driver\SQL\Query;
use Driver\SQL\Column\IntColumn;
class BigIntColumn extends IntColumn {
public function __construct(string $name, bool $nullable, $defaultValue, bool $unsigned) {
parent::__construct($name, $nullable, $defaultValue, $unsigned);
$this->type = "BIGINT";
}
}