Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DKAN-4285 Finish migration to harvest_runs. #4286

Merged
merged 1 commit into from
Sep 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions modules/harvest/harvest.install
Original file line number Diff line number Diff line change
Expand Up @@ -88,3 +88,15 @@ function harvest_update_8007(&$sandbox) {
$harvest_utility = \Drupal::service('dkan.harvest.utility');
$harvest_utility->harvestHashUpdate();
}

/**
* Move entries from harvest_[ID]_runs to harvest_runs.
*
* This finishes the process started by harvest_update_8007.
*/
function harvest_update_8008(&$sandbox) {
/** @var \Drupal\harvest\HarvestUtility $harvest_utility */
$harvest_utility = \Drupal::service('dkan.harvest.utility');
$harvest_utility->harvestRunsUpdate();
return 'Harvest runs coalesced into table harvest_runs.';
}