View file upgrade/migrations/20161109004123_rename_fields_in_topics2.php

File size: 332B
<?php

use Phinx\Migration\AbstractMigration;

class RenameFieldsInTopics2 extends AbstractMigration
{
    /**
     * Migrate Change.
     */
    public function change()
    {
        $table = $this->table('topics');
        $table->renameColumn('forums_id', 'forum_id');
        $table->renameColumn('mod', 'moderators');
    }
}