web-base/core/Driver/SQL/Column/BigIntColumn.class.php
2022-06-17 20:53:35 +02:00

11 lines
272 B
PHP

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