12 lines
212 B
PHP
12 lines
212 B
PHP
|
<?php
|
||
|
|
||
|
namespace Driver\SQL\Column;
|
||
|
|
||
|
class IntColumn extends Column {
|
||
|
|
||
|
public function __construct($name, $nullable=false, $defaultValue=NULL) {
|
||
|
parent::__construct($name, $nullable, $defaultValue);
|
||
|
}
|
||
|
|
||
|
}
|