Rename::change PHP Method

change() public method

Write your reversible migrations using this method. More information on writing migrations is available here: http://docs.phinx.org/en/latest/migrations.html#the-abstractmigration-class
public change ( ) : void
return void
    public function change()
    {
        $table = $this->table('queued_tasks');
        $table->rename('queued_jobs')->renameColumn('task_group', 'job_group')->renameColumn('jobtype', 'job_type')->update();
    }
Rename