Просмотр файла database/upgrades/20180420174830_edit_fields_in_vote.php
<?php
use Phinx\Migration\AbstractMigration;
class EditFieldsInVote extends AbstractMigration
{
/**
* Migrate Up.
*/
public function up()
{
$table = $this->table('vote');
$table
->changeColumn('count', 'integer', ['default' => 0])
->save();
}
/**
* Migrate Down.
*/
public function down()
{
}
}