Просмотр файла database/upgrades/20180306180700_rename_comments_in_photo.php

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

use Phinx\Migration\AbstractMigration;

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