Changes:
- dbstructure(null) is no longer possible, an empty string does it
This commit is contained in:
parent
b6bfe72083
commit
f3599fa3e9
|
@ -163,7 +163,7 @@ class DBStructure
|
||||||
public static function writeStructure()
|
public static function writeStructure()
|
||||||
{
|
{
|
||||||
$tables = [];
|
$tables = [];
|
||||||
foreach (self::definition(null) as $name => $definition) {
|
foreach (self::definition('') as $name => $definition) {
|
||||||
$indexes = [[
|
$indexes = [[
|
||||||
'name' => 'Name',
|
'name' => 'Name',
|
||||||
'fields' => 'Fields',
|
'fields' => 'Fields',
|
||||||
|
|
Loading…
Reference in a new issue