Namespace and ClassPath rewrites
This commit is contained in:
11
Core/Driver/SQL/Column/BigIntColumn.class.php
Normal file
11
Core/Driver/SQL/Column/BigIntColumn.class.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?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";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user