From 2713a50fa3808db66d9c0feeecdac7b9e1dc0e18 Mon Sep 17 00:00:00 2001 From: uagrace Date: Sun, 29 Jan 2017 22:21:30 +0200 Subject: [PATCH] Small fix * Added missing "use Yii;" for migration class --- migrations/m161109_092304_rename_comment_table.php | 1 + 1 file changed, 1 insertion(+) diff --git a/migrations/m161109_092304_rename_comment_table.php b/migrations/m161109_092304_rename_comment_table.php index 52dbea8..7f3ac26 100644 --- a/migrations/m161109_092304_rename_comment_table.php +++ b/migrations/m161109_092304_rename_comment_table.php @@ -2,6 +2,7 @@ namespace yii2mod\comments\migrations; +use Yii; use yii\db\Migration; class m161109_092304_rename_comment_table extends Migration