yii\console\controllers\MigrateController::removeMigrationHistory PHP Method

removeMigrationHistory() protected method

protected removeMigrationHistory ( $version )
    protected function removeMigrationHistory($version)
    {
        $command = $this->db->createCommand();
        $command->delete($this->migrationTable, ['version' => $version])->execute();
    }