📄 mysql.php
字号:
<?php // $Id: mysql.php,v 1.4.8.1 2007/11/02 16:20:36 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.// MySQL commands for upgrading this question typefunction qtype_randomsamatch_upgrade($oldversion=0) { global $CFG; if ($oldversion < 2006042800) { // This is a random questiontype and therefore answers are always shuffled, no need for this field modify_database('', 'ALTER TABLE prefix_question_randomsamatch DROP shuffleanswers'); } ////// DO NOT ADD NEW THINGS HERE!! USE upgrade.php and the lib/ddllib.php functions. return true;}?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -