芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/public_html/cepali/admin/tool/policy/db/upgrade.php
. /** * Plugin upgrade steps are defined here. * * @package tool_policy * @category upgrade * @copyright 2018 David Mudrák
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); /** * Execute the plugin upgrade steps from the given old version. * * @param int $oldversion * @return bool */ function xmldb_tool_policy_upgrade($oldversion) { global $DB; $dbman = $DB->get_manager(); if ($oldversion < 2018082900) { // Add field agreementstyle to the table tool_policy_versions. $table = new xmldb_table('tool_policy_versions'); $field = new xmldb_field('agreementstyle', XMLDB_TYPE_INTEGER, '3', null, XMLDB_NOTNULL, null, '0', 'policyid'); if (!$dbman->field_exists($table, $field)) { $dbman->add_field($table, $field); } upgrade_plugin_savepoint(true, 2018082900, 'tool', 'policy'); } if ($oldversion < 2018091800) { // Add field "optional" to the table "tool_policy_versions". $table = new xmldb_table('tool_policy_versions'); $field = new xmldb_field('optional', XMLDB_TYPE_INTEGER, '3', null, XMLDB_NOTNULL, null, '0', 'agreementstyle'); if (!$dbman->field_exists($table, $field)) { $dbman->add_field($table, $field); } upgrade_plugin_savepoint(true, 2018091800, 'tool', 'policy'); } // Automatically generated Moodle v3.6.0 release upgrade line. // Put any upgrade step following this. // Automatically generated Moodle v3.7.0 release upgrade line. // Put any upgrade step following this. return true; }