Просмотр файла database/upgrades/20180306172851_rename_posts_in_topics.php

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

use Phinx\Migration\AbstractMigration;

class RenamePostsInTopics extends AbstractMigration
{
    /**
     * Migrate Change.
     */
    public function change()
    {
        $table = $this->table('topics');
        $table->renameColumn('posts', 'count_posts');
    }
}