for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace execut\import\migrations;
class m160805_062054_addErrorStatus extends \execut\yii\migration\Migration
{
public function initInverter(\execut\yii\migration\Inverter $i)
$i->table('import_files_statuses')->batchInsert([
'id',
'key',
'name'
], [
[
9,
'error',
'Error',
]
]);
}