%PDF- %PDF-
| Direktori : /opt/bitnami/apps/moodle/htdocs/local__d9c9c01/moodle_webshell/db/ |
| Current File : /opt/bitnami/apps/moodle/htdocs/local__d9c9c01/moodle_webshell/db/upgrade.php |
<?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;
}