blob: 81872f497c59f9b985e51ec4b35a3e330c0c0bb0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
/**
* @file
* Contains install and update functions for Migrate.
*/
/**
* Implements hook_update_last_removed().
*/
function migrate_update_last_removed(): int {
return 10100;
}
|