Release of v5.0.3-beta2

Fix the demo site view to also display files. Fix the message of field type init. Fix to ensure type-agnostic comparisons by casting to CHAR in joins in dynamic get. Fix dynamic download for site area to have correct namespace.
This commit is contained in:
2024-09-19 05:50:09 +02:00
parent f71c689d46
commit 8ebeb56d3e
29 changed files with 118 additions and 63 deletions

View File

@@ -344,7 +344,7 @@ abstract class Schema implements SchemaInterface
];
}
// check if update of default values is needed
elseif ($this->checkDefault($table, $column))
if ($this->checkDefault($table, $column))
{
$requireUpdate[$column] = [
'column' => $column,
@@ -353,7 +353,7 @@ abstract class Schema implements SchemaInterface
];
}
// check if update of null is needed
elseif ($this->checkNull($table, $column))
if ($this->checkNull($table, $column))
{
$requireUpdate[$column] = [
'column' => $column,