postgres7.php

来自「很棒的在线教学系统」· PHP 代码 · 共 26 行

PHP
26
字号
<?php  // $Id: postgres7.php,v 1.4.8.1 2007/11/02 16:20:28 tjhunt Exp $// THIS FILE IS DEPRECATED!  PLEASE DO NOT MAKE CHANGES TO IT!//// IT IS USED ONLY FOR UPGRADES FROM BEFORE MOODLE 1.7, ALL // LATER CHANGES SHOULD USE upgrade.php IN THIS DIRECTORY.// PostgreSQL commands for upgrading this question typefunction qtype_multichoice_upgrade($oldversion=0) {    global $CFG;    $success = true;        if ($success && $oldversion < 2006081900) {        $success = $success && table_column('question_multichoice', '', 'correctfeedback', 'text', '', '', '');        $success = $success && table_column('question_multichoice', '', 'partiallycorrectfeedback', 'text', '', '', '');        $success = $success && table_column('question_multichoice', '', 'incorrectfeedback', 'text', '', '', '');    }    //////  DO NOT ADD NEW THINGS HERE!!  USE upgrade.php and the lib/ddllib.php functions.    return $success;}?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?