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:
@@ -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,
|
||||
|
Reference in New Issue
Block a user