for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use yii\db\Migration;
/**
* Class m200821_031033_update_category_table
*/
class m200821_031033_update_category_table extends Migration
{
* {@inheritdoc}
public function safeUp()
$this->renameColumn('{{%category}}', 'direction', 'transaction_type');
}
public function safeDown()
echo "m200821_031033_update_category_table cannot be reverted.\n";
$this->renameColumn('{{%category}}', 'transaction_type', 'direction');
return true;