moodle/enrol/paypal/db/postgres7.php
2004-08-19 17:16:29 +00:00

20 lines
303 B
PHP

<?PHP //$Id$
// PostgreSQL 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/postgres7.sql");
}
return $result;
}
?>