Files
CHIEFSOFT\ameye df3a033196 first commit
2024-06-08 17:09:23 -04:00

24 lines
640 B
PHP

<?php
/**
* @file classes/migration/upgrade/v3_4_0/I6782_MetricsGeo.php
*
* Copyright (c) 2022 Simon Fraser University
* Copyright (c) 2022 John Willinsky
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
*
* @class I6782_MetricsGeo
*
* @brief Migrate submission stats Geo data from the old DB table metrics into the new DB table metrics_submission_geo_daily, then aggregate monthly.
*/
namespace APP\migration\upgrade\v3_4_0;
class I6782_MetricsGeo extends \PKP\migration\upgrade\v3_4_0\I6782_MetricsGeo
{
protected function getMetricType(): string
{
return 'ojs::counter';
}
}