web-base/Core/Driver/SQL/Column/BigIntColumn.class.php

11 lines
277 B
PHP
Raw Normal View History

2021-12-08 16:53:43 +01:00
<?php
2022-11-18 18:06:46 +01:00
namespace Core\Driver\SQL\Column;
2021-12-08 16:53:43 +01:00
class BigIntColumn extends IntColumn {
public function __construct(string $name, bool $nullable, $defaultValue, bool $unsigned) {
parent::__construct($name, $nullable, $defaultValue, $unsigned);
$this->type = "BIGINT";
}
}