Files
moodle/mod/wiki/db/postgres7.php
2004-07-30 10:42:59 +00:00

20 lines
468 B
PHP

<?PHP
function wiki_upgrade($oldversion) {
/// This function does anything necessary to upgrade
/// older versions to match current functionality
global $CFG;
if ($oldversion < 2004073000) {
modify_database("", "ALTER TABLE prefix_wiki_pages DROP COLUMN id;");
modify_database("", "ALTER TABLE ONLY prefix_wiki_pages
ADD CONSTRAINT id PRIMARY KEY (pagename, \"version\");");
}
return true;
}
?>