Generate CREATE TABLE queries using new parser

This commit is contained in:
Kijin Sung 2020-06-26 11:14:51 +09:00
parent 99e74a0e20
commit 93e597989d
3 changed files with 113 additions and 9 deletions

View file

@ -10,6 +10,7 @@ class Constraint
public $type;
public $column;
public $references;
public $on_update;
public $on_delete;
public $condition;
public $on_delete = 'RESTRICT';
public $on_update = 'RESTRICT';
}