for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace zhuravljov\yii\queue\monitor\migrations;
use zhuravljov\yii\queue\monitor\base\Migration;
/**
* Exec Result
*
* @author Roman Zhuravlev <[email protected]>
*/
class M190420000000ExecResult extends Migration
{
* @inheritdoc
public function safeUp()
$this->addColumn($this->env->execTableName, 'result_data', $this->binary()->after('error'));
}
public function safeDown()
$this->dropColumn($this->env->execTableName, 'result_data');