11 lines
217 B
PHP
11 lines
217 B
PHP
<?php
|
|
|
|
namespace Driver\SQL\Column;
|
|
|
|
class SerialColumn extends Column {
|
|
|
|
public function __construct(string $name, $defaultValue = NULL) {
|
|
parent::__construct($name, false, $defaultValue); # not nullable
|
|
}
|
|
|
|
} |