View file upgrade/migrations/20161108181051_rename_order_in_catsblog.php

File size: 275B
<?php

use Phinx\Migration\AbstractMigration;

class RenameOrderInCatsblog extends AbstractMigration
{
    /**
     * Migrate Change.
     */
    public function change()
    {
        $table = $this->table('catsblog');
        $table->renameColumn('order', 'sort');
    }
}