Initial add for Oracle.

This commit is contained in:
les_kopari 2003-09-25 02:11:31 +00:00
parent 39cb14779b
commit ff74d85283
5 changed files with 60 additions and 0 deletions

13
mod/forum/db/oci8po.php Executable file
View File

@ -0,0 +1,13 @@
<?PHP
function forum_upgrade($oldversion) {
// This function does anything necessary to upgrade
// older versions to match current functionality
global $CFG;
return true;
}
?>

11
mod/quiz/db/oci8po.php Executable file
View File

@ -0,0 +1,11 @@
<?PHP
function quiz_upgrade($oldversion) {
// This function does anything necessary to upgrade
// older versions to match current functionality
global $CFG;
return true;
}
?>

13
mod/resource/db/oci8po.php Executable file
View File

@ -0,0 +1,13 @@
<?PHP
function resource_upgrade($oldversion) {
// This function does anything necessary to upgrade
// older versions to match current functionality
global $CFG;
return true;
}
?>

11
mod/survey/db/oci8po.php Executable file
View File

@ -0,0 +1,11 @@
<?PHP
function survey_upgrade($oldversion) {
// This function does anything necessary to upgrade
// older versions to match current functionality
return true;
}
?>

View File

@ -0,0 +1,12 @@
<?PHP
function workshop_upgrade($oldversion) {
// This function does anything necessary to upgrade
// older versions to match current functionality
return true;
}
?>