11 lines
277 B
PHP
11 lines
277 B
PHP
<?php
|
|
|
|
namespace Core\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";
|
|
}
|
|
} |