Browse Source

Added table prefix to advanced application migration (now drop table)

tags/2.0.0-beta
Alexander Makarov 11 years ago
parent
commit
32ac899199
  1. 2
      apps/advanced/console/migrations/m130524_201442_init.php

2
apps/advanced/console/migrations/m130524_201442_init.php

@ -28,6 +28,6 @@ class m130524_201442_init extends \yii\db\Migration
public function down()
{
$this->dropTable('user');
$this->dropTable($this->db->tablePrefix . 'user');
}
}

Loading…
Cancel
Save