View file upgrade/migrations/20161122190023_rename_topic_in_bookmarks.php

File size: 332B
<?php

use Phinx\Migration\AbstractMigration;

class RenameTopicInBookmarks extends AbstractMigration
{
    /**
     * Migrate Change.
     */
    public function change()
    {
        $table = $this->table('bookmarks');
        $table->renameColumn('forum', 'forum_id');
        $table->renameColumn('topic', 'topic_id');
    }
}