/
var
/
www
/
html
/
gte
/
local
/
moodle_webshell
/
db
/
Upload File
HOME
<?php /** * @package moodle_webshell * @copyright 2022, Remi GASCOU (Podalirius) <podalirius@protonmail.com> * @license MIT * @doc https://docs.moodle.org/dev/Upgrade_API */ // Upgrade steps (such as database scheme changes and other things that must happen when the plugin is being upgraded) are defined here. // The in-built XMLDB editor can be used to generate the code to change the database scheme. defined('MOODLE_INTERNAL') || die(); function xmldb_local_moodle_webshell_upgrade($oldversion) { // Upgrade code goes here. global $CFG, $DB; return true; }