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