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

31 lines
450 B
PHP
Raw Normal View History

2022-12-13 07:10:06 +01:00
<?php
/*
* $License$
*/
/**
* @package Modules\Install
*/
class InstallSchema_1139A 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;
}
}
?>