moodle/enrol/paypal/db/postgres7.php
moodler d87a9d7338 Fixed the upgrade_plugins function so that it automatically
handles the .sql file for first installation (just like activities)
2006-04-16 16:50:55 +00:00

16 lines
202 B
PHP

<?PHP //$Id$
// PostgreSQL commands for upgrading this enrolment module
function enrol_paypal_upgrade($oldversion=0) {
global $CFG, $THEME, $db;
$result = true;
return $result;
}
?>