Alter Table init values

This commit is contained in:
Roman 2021-04-03 16:25:40 +02:00
parent 27996801eb
commit 6158a20670

@ -17,6 +17,8 @@ class AlterTable extends Query {
public function __construct(SQL $sql, string $table) { public function __construct(SQL $sql, string $table) {
parent::__construct($sql); parent::__construct($sql);
$this->table = $table; $this->table = $table;
$this->column = null;
$this->constraint = null;
} }
public function add($what): AlterTable { public function add($what): AlterTable {