mirror of
https://github.com/moodle/moodle.git
synced 2025-01-20 15:08:32 +01:00
20 lines
294 B
PHP
20 lines
294 B
PHP
<?PHP //$Id$
|
|
|
|
// MySQL commands for upgrading this enrolment module
|
|
|
|
function paypal_upgrade($oldversion=0) {
|
|
|
|
global $CFG, $THEME, $db;
|
|
|
|
$result = true;
|
|
|
|
if ($oldversion == 0) {
|
|
modify_database("$CFG->dirroot/enrol/paypal/db/mysql.sql");
|
|
}
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
?>
|