web-base/core/Driver/SQL/Column/IntColumn.class.php

24 lines
505 B
PHP
Raw Normal View History

2020-04-02 00:02:51 +02:00
<?php
namespace Driver\SQL\Column;
class IntColumn extends Column {
2021-12-08 16:53:43 +01:00
protected string $type;
private bool $unsigned;
public function __construct(string $name, bool $nullable = false, $defaultValue = NULL, bool $unsigned = false) {
2020-04-02 00:02:51 +02:00
parent::__construct($name, $nullable, $defaultValue);
2021-12-08 16:53:43 +01:00
$this->type = "INTEGER";
$this->unsigned = $unsigned;
}
public function isUnsigned(): bool {
return $this->unsigned;
2020-04-02 00:02:51 +02:00
}
2021-12-08 16:53:43 +01:00
public function getType(): string {
return $this->type;
}
2020-04-02 00:02:51 +02:00
}