mirror of
https://github.com/friendica/friendica
synced 2024-11-18 04:23:41 +00:00
Changes:
- dbstructure(null) is no longer possible, an empty string does it
This commit is contained in:
parent
b6bfe72083
commit
f3599fa3e9
1 changed files with 1 additions and 1 deletions
|
@ -163,7 +163,7 @@ class DBStructure
|
|||
public static function writeStructure()
|
||||
{
|
||||
$tables = [];
|
||||
foreach (self::definition(null) as $name => $definition) {
|
||||
foreach (self::definition('') as $name => $definition) {
|
||||
$indexes = [[
|
||||
'name' => 'Name',
|
||||
'fields' => 'Fields',
|
||||
|
|
Loading…
Reference in a new issue