Fixes #16941: Set yii\console\controllers\MigrateController::useTablePrefix to true as default value

This commit is contained in:
Nikolay
2019-01-03 20:16:42 +03:00
committed by Alexander Makarov
parent 966f262016
commit 1a34f61e56
17 changed files with 161 additions and 160 deletions

View File

@ -4,6 +4,7 @@ Yii Framework 2 Change Log
2.0.16 under development
------------------------
- Chg #16941: Set `yii\console\controllers\MigrateController::useTablePrefix` to true as default value (GHopperMSK)
- Bug #16966: Fix ArrayExpression support in related tables (GHopperMSK)
- Bug #16891: Fixed Pagination::totalCount initialized incorrectly (taobig)
- Bug #16028: Fix serialization of complex cache keys that contain non-UTF sequences (rugabarbo)

View File

@ -112,7 +112,7 @@ class MigrateController extends BaseMigrateController
* name is `post` the generator wil return `{{%post}}`.
* @since 2.0.8
*/
public $useTablePrefix = false;
public $useTablePrefix = true;
/**
* @var array column definition strings used for creating migration code.
*