Browse Source

Removed yii\db\Schema from use section

Declaration of yii\db\Schema is not needed by default. Migration can be related with changing data or renaming column, so user should explicitly add it when it's needed.
9899-cache-bug
Alexey Rogachev 9 years ago
parent
commit
777c45a653
  1. 2
      framework/views/migration.php

2
framework/views/migration.php

@ -8,11 +8,11 @@
echo "<?php\n";
?>
use yii\db\Schema;
use yii\db\Migration;
class <?= $className ?> extends Migration
{
public function up()
{

Loading…
Cancel
Save