Просмотр файла database/upgrades/20171001154531_add_deleted_at_to_rekuser.php
<?php
use Phinx\Migration\AbstractMigration;
class AddDeletedAtToRekuser extends AbstractMigration
{
/**
* Migrate Up.
*/
public function change()
{
$table = $this->table('rekuser');
$table->addColumn('deleted_at', 'integer', [
'null' => true
])
->update();
}
}