19 lines
261 B
PHP
19 lines
261 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @param Ps_accounts $module
|
||
|
|
*
|
||
|
|
* @return bool
|
||
|
|
*
|
||
|
|
* @throws Exception
|
||
|
|
* @throws Throwable
|
||
|
|
*/
|
||
|
|
function upgrade_module_8_0_12($module)
|
||
|
|
{
|
||
|
|
require_once __DIR__ . '/helpers.php';
|
||
|
|
|
||
|
|
migrate_or_create_identities_v8($module);
|
||
|
|
|
||
|
|
return true;
|
||
|
|
}
|