mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-08 08:56:23 +08:00
* Resolve #19327 * cast from extracted column * Update CHANGELOG * Update CHANGELOG.md Co-authored-by: Bizley <pawel@positive.codes>
This commit is contained in:
@ -18,6 +18,7 @@ Yii Framework 2 Change Log
|
|||||||
- Bug #19322: Revert force setting value to empty string in case it's `null` in `yii\validators\FilterValidator::validateAttribute()` (bizley)
|
- Bug #19322: Revert force setting value to empty string in case it's `null` in `yii\validators\FilterValidator::validateAttribute()` (bizley)
|
||||||
- Bug #19329: Fix `yii\web\GroupUrlRule` to properly normalize prefix (bizley)
|
- Bug #19329: Fix `yii\web\GroupUrlRule` to properly normalize prefix (bizley)
|
||||||
- Bug #19328: Passing null to parameter #1 ($string) of type string is deprecated in `yii\db\oci\Schema` (Arkeins)
|
- Bug #19328: Passing null to parameter #1 ($string) of type string is deprecated in `yii\db\oci\Schema` (Arkeins)
|
||||||
|
- Bug #19237: Fix OCI PHP 8.1 passing `null` to trim() (longthanhtran)
|
||||||
|
|
||||||
|
|
||||||
2.0.45 February 11, 2022
|
2.0.45 February 11, 2022
|
||||||
|
|||||||
@ -414,7 +414,7 @@ SQL;
|
|||||||
if (stripos((string) $column['DATA_DEFAULT'], 'timestamp') !== false) {
|
if (stripos((string) $column['DATA_DEFAULT'], 'timestamp') !== false) {
|
||||||
$c->defaultValue = null;
|
$c->defaultValue = null;
|
||||||
} else {
|
} else {
|
||||||
$defaultValue = $column['DATA_DEFAULT'];
|
$defaultValue = (string) $column['DATA_DEFAULT'];
|
||||||
if ($c->type === 'timestamp' && $defaultValue === 'CURRENT_TIMESTAMP') {
|
if ($c->type === 'timestamp' && $defaultValue === 'CURRENT_TIMESTAMP') {
|
||||||
$c->defaultValue = new Expression('CURRENT_TIMESTAMP');
|
$c->defaultValue = new Expression('CURRENT_TIMESTAMP');
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Reference in New Issue
Block a user