Просмотр файла upgrade/migrations/20161104211651_rename_fields_in_setting.php
<?php
use Phinx\Migration\AbstractMigration;
class RenameFieldsInSetting extends AbstractMigration
{
/**
* Migrate Change.
*/
public function change()
{
$table = $this->table('setting');
$table->renameColumn('setting_name', 'name');
$table->renameColumn('setting_value', 'value');
}
}