View file upgrade/migrations/20161108232823_rename_fields_in_downs2.php

File size: 331B
<?php

use Phinx\Migration\AbstractMigration;

class RenameFieldsInDowns2 extends AbstractMigration
{
    /**
     * Migrate Change.
     */
    public function change()
    {
        $table = $this->table('downs');
        $table->renameColumn('cats_id', 'category_id');
        $table->renameColumn('raiting', 'rating');
    }
}