13 lines
305 B
PHP
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";
|
||
|
}
|
||
|
}
|