TimeTrex/classes/modules/install/InstallSchema_1138A.class.php

28 lines
430 B
PHP
Raw Normal View History

2022-12-13 07:10:06 +01:00
<?php
/**
* @package Modules\Install
*/
class InstallSchema_1138A extends InstallSchema_Base {
/**
* @return bool
*/
function preInstall() {
Debug::text( 'preInstall: ' . $this->getVersion(), __FILE__, __LINE__, __METHOD__, 9 );
return true;
}
/**
* @return bool
*/
function postInstall() {
Debug::text( 'postInstall: ' . $this->getVersion(), __FILE__, __LINE__, __METHOD__, 9 );
return true;
}
}
?>