Просмотр файла database/upgrades/20180226113851_rename_desc_in_forums.php
<?php
use Phinx\Migration\AbstractMigration;
class RenameDescInForums extends AbstractMigration
{
/**
* Migrate Change.
*/
public function change()
{
$table = $this->table('forums');
$table->renameColumn('desc', 'description');
}
}