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

31 lines
450 B
PHP

<?php
/*
* $License$
*/
/**
* @package Modules\Install
*/
class InstallSchema_1137A 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;
}
}
?>