Piwik\Plugins\Provider\Provider::uninstall PHP Method

uninstall() public method

public uninstall ( )
    public function uninstall()
    {
        // add column hostname / hostname ext in the visit table
        $query = "ALTER TABLE `" . Common::prefixTable('log_visit') . "` DROP `location_provider`";
        Db::exec($query);
    }