mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
Initial add for Oracle.
This commit is contained in:
parent
39cb14779b
commit
ff74d85283
13
mod/forum/db/oci8po.php
Executable file
13
mod/forum/db/oci8po.php
Executable 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
11
mod/quiz/db/oci8po.php
Executable 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
13
mod/resource/db/oci8po.php
Executable 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
11
mod/survey/db/oci8po.php
Executable 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;
|
||||
}
|
||||
|
||||
|
||||
?>
|
||||
|
12
mod/workshop/db/oci8po.php
Normal file
12
mod/workshop/db/oci8po.php
Normal 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;
|
||||
}
|
||||
|
||||
|
||||
?>
|
||||
|
Loading…
x
Reference in New Issue
Block a user