moodle/mod/resource/db/mysql.php
moodler 3ec7dc5704 Fixed a typo in the MySQL database definition that only shows
up when adding resources to courses with IDs higher than 255
2003-08-20 13:06:11 +00:00

19 lines
332 B
PHP

<?PHP // $Id$
function resource_upgrade($oldversion) {
// This function does anything necessary to upgrade
// older versions to match current functionality
global $CFG;
if ($oldversion < 2003082000) {
table_column("resource", "course", "course", "integer", "10", "unsigned", "0");
}
return true;
}
?>