Namespace and ClassPath rewrites
This commit is contained in:
11
Core/Driver/SQL/Column/SerialColumn.class.php
Normal file
11
Core/Driver/SQL/Column/SerialColumn.class.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Core\Driver\SQL\Column;
|
||||
|
||||
class SerialColumn extends Column {
|
||||
|
||||
public function __construct(string $name, $defaultValue = NULL) {
|
||||
parent::__construct($name, false, $defaultValue); # not nullable
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user