diff --git a/db/upgrade.php b/db/upgrade.php new file mode 100644 index 0000000..37e7d54 --- /dev/null +++ b/db/upgrade.php @@ -0,0 +1,35 @@ +. + +/** + * Customcert module upgrade code. + * + * @package mod_customcert + * @copyright 2016 Mark Nelson + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ + +defined('MOODLE_INTERNAL') || die; + +/** + * Customcert module upgrade code. + * + * @param int $oldversion the version we are upgrading from + * @return bool always true + */ +function xmldb_customcert_upgrade($oldversion) { + return true; +}