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

11 lines
228 B
PHP
Raw Normal View History

2020-04-02 00:02:51 +02:00
<?php
namespace Driver\SQL\Column;
class JsonColumn extends Column {
2021-04-02 21:58:06 +02:00
public function __construct(string $name, bool $nullable = false, $defaultValue = null) {
2020-04-02 00:02:51 +02:00
parent::__construct($name, $nullable, $defaultValue);
}
2020-04-03 17:39:58 +02:00
}