Skip to content

Commit

Permalink
Initial add for Oracle.
Browse files Browse the repository at this point in the history
  • Loading branch information
les_kopari committed Sep 25, 2003
1 parent 39cb147 commit ff74d85
Show file tree
Hide file tree
Showing 5 changed files with 60 additions and 0 deletions.
13 changes: 13 additions & 0 deletions mod/forum/db/oci8po.php
@@ -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 changes: 11 additions & 0 deletions mod/quiz/db/oci8po.php
@@ -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 changes: 13 additions & 0 deletions mod/resource/db/oci8po.php
@@ -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 changes: 11 additions & 0 deletions mod/survey/db/oci8po.php
@@ -0,0 +1,11 @@
<?PHP
function survey_upgrade($oldversion) {
// This function does anything necessary to upgrade
// older versions to match current functionality

return true;
}


?>

12 changes: 12 additions & 0 deletions mod/workshop/db/oci8po.php
@@ -0,0 +1,12 @@
<?PHP

function workshop_upgrade($oldversion) {
// This function does anything necessary to upgrade
// older versions to match current functionality

return true;
}


?>

0 comments on commit ff74d85

Please sign in to comment.