mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-02 13:02:24 +08:00
Fixes #16941: Set yii\console\controllers\MigrateController::useTablePrefix to true as default value
This commit is contained in:
committed by
Alexander Makarov
parent
966f262016
commit
1a34f61e56
@ -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)
|
||||
|
||||
@ -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.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user