web-base/core/Driver/SQL/Column/BigIntColumn.php

13 lines
305 B
PHP
Raw Normal View History

2021-12-08 16:53:43 +01:00
<?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";
}
}