Просмотр файла database/upgrades/20180306180222_rename_comments_in_blogs.php

Размер файла: 285B
<?php

use Phinx\Migration\AbstractMigration;

class RenameCommentsInBlogs extends AbstractMigration
{
    /**
     * Migrate Change.
     */
    public function change()
    {
        $table = $this->table('blogs');
        $table->renameColumn('comments', 'count_comments');
    }
}