📄 mysql.php
字号:
<?php// 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.function data_upgrade($oldversion) {/// This function does anything necessary to upgrade/// older versions to match current functionality global $CFG; if ($oldversion < 2006011900) { table_column("data_content", "", "content1", "longtext", "", "", "", "not null"); table_column("data_content", "", "content2", "longtext", "", "", "", "not null"); table_column("data_content", "", "content3", "longtext", "", "", "", "not null"); table_column("data_content", "", "content4", "longtext", "", "", "", "not null"); } if ($oldversion < 2006011901) { table_column("data", "", "approval", "tinyint", "4"); table_column("data_records", "", "approved", "tinyint", "4"); } if ($oldversion < 2006020801) { table_column("data", "", "scale", "integer", "10", "signed"); table_column("data", "", "assessed", "integer", "10"); table_column("data", "", "assesspublic", "integer", "4"); } if ($oldversion < 2006022700) { table_column("data_comments", "", "created", "integer", "10"); table_column("data_comments", "", "modified", "integer", "10"); } if ($oldversion < 2006030700) { modify_database('', "INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('data', 'add', 'data', 'name')"); modify_database('', "INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('data', 'update', 'data', 'name')"); modify_database('', "INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('data', 'record delete', 'data', 'name')"); modify_database('', "INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('data', 'fields add', 'data_fields', 'name')"); modify_database('', "INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('data', 'fields update', 'data_fields', 'name')"); modify_database('', "INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('data', 'templates saved', 'data', 'name')"); modify_database('', "INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('data', 'templates def', 'data', 'name')"); } if ($oldversion < 2006032700) { table_column('data', '', 'defaultsort', 'integer', '10', 'unsigned', '0'); table_column('data', '', 'defaultsortdir', 'tinyint', '4', 'unsigned', '0', 'not null', 'defaultsort'); table_column('data', '', 'editany', 'tinyint', '4', 'unsigned', '0', 'not null', 'defaultsortdir'); } if ($oldversion < 2006032900) { table_column('data', '', 'csstemplate', 'text', '', '', '', 'not null', 'rsstemplate'); } if ($oldversion < 2006050500) { // 2 fields have got no default null values table_column('data_comments','content','content','text','','','','not null'); table_column('data_fields','description','description','text','','','','not null'); table_column('data_fields','param1','param1','text','','','','not null'); table_column('data_fields','param2','param2','text','','','','not null'); table_column('data_fields','param3','param3','text','','','','not null'); table_column('data_fields','param4','param4','text','','','','not null'); table_column('data_fields','param5','param5','text','','','','not null'); table_column('data_fields','param6','param6','text','','','','not null'); table_column('data_fields','param7','param7','text','','','','not null'); table_column('data_fields','param8','param8','text','','','','not null'); table_column('data_fields','param9','param9','text','','','','not null'); table_column('data_fields','param10','param10','text','','','','not null'); } if ($oldversion < 2006052400) { table_column('data','','rsstitletemplate','text','','','','not null','rsstemplate'); } if ($oldversion < 2006081700) { table_column('data', '', 'jstemplate', 'text', '', '', '', 'not null', 'csstemplate'); } if ($oldversion < 2006092000) { // Upgrades for new roles and capabilities support. require_once($CFG->dirroot.'/mod/data/lib.php'); $datamod = get_record('modules', 'name', 'data'); if ($data = get_records('data')) { if (!$teacherroles = get_roles_with_capability('moodle/legacy:teacher', CAP_ALLOW)) { notify('Default teacher role was not found. Roles and permissions '. 'for all your forums will have to be manually set after '. 'this upgrade.'); } if (!$studentroles = get_roles_with_capability('moodle/legacy:student', CAP_ALLOW)) { notify('Default student role was not found. Roles and permissions '. 'for all your forums will have to be manually set after '. 'this upgrade.'); } foreach ($data as $d) { if (!data_convert_to_roles($d, $teacherroles, $studentroles)) { notify('Data with id '.$d->id.' was not upgraded'); } } // We need to rebuild all the course caches to refresh the state of // the forum modules. include_once( "$CFG->dirroot/course/lib.php" ); rebuild_course_cache(); } // End if. modify_database('', 'ALTER TABLE prefix_data DROP COLUMN participants;'); modify_database('', 'ALTER TABLE prefix_data DROP COLUMN assesspublic;'); modify_database('', 'ALTER TABLE prefix_data DROP COLUMN ratings;'); } if ($oldversion < 2006092302) { // Changing some TEXT fields to NULLable and no default execute_sql("ALTER TABLE {$CFG->prefix}data CHANGE singletemplate singletemplate text NULL AFTER rssarticles"); execute_sql("ALTER TABLE {$CFG->prefix}data CHANGE listtemplate listtemplate text NULL AFTER singletemplate"); execute_sql("ALTER TABLE {$CFG->prefix}data CHANGE listtemplateheader listtemplateheader text NULL AFTER listtemplate"); execute_sql("ALTER TABLE {$CFG->prefix}data CHANGE listtemplatefooter listtemplatefooter text NULL AFTER listtemplateheader"); execute_sql("ALTER TABLE {$CFG->prefix}data CHANGE addtemplate addtemplate text NULL AFTER listtemplatefooter"); execute_sql("ALTER TABLE {$CFG->prefix}data CHANGE rsstemplate rsstemplate text NULL AFTER addtemplate"); execute_sql("ALTER TABLE {$CFG->prefix}data CHANGE rsstitletemplate rsstitletemplate text NULL AFTER rsstemplate"); execute_sql("ALTER TABLE {$CFG->prefix}data CHANGE csstemplate csstemplate text NULL AFTER rsstitletemplate"); execute_sql("ALTER TABLE {$CFG->prefix}data CHANGE jstemplate jstemplate text NULL AFTER csstemplate"); execute_sql("ALTER TABLE {$CFG->prefix}data_fields CHANGE param1 param1 text NULL AFTER description"); execute_sql("ALTER TABLE {$CFG->prefix}data_fields CHANGE param2 param2 text NULL AFTER param1"); execute_sql("ALTER TABLE {$CFG->prefix}data_fields CHANGE param3 param3 text NULL AFTER param2"); execute_sql("ALTER TABLE {$CFG->prefix}data_fields CHANGE param4 param4 text NULL AFTER param3"); execute_sql("ALTER TABLE {$CFG->prefix}data_fields CHANGE param5 param5 text NULL AFTER param4"); execute_sql("ALTER TABLE {$CFG->prefix}data_fields CHANGE param6 param6 text NULL AFTER param5"); execute_sql("ALTER TABLE {$CFG->prefix}data_fields CHANGE param7 param7 text NULL AFTER param6"); execute_sql("ALTER TABLE {$CFG->prefix}data_fields CHANGE param8 param8 text NULL AFTER param7"); execute_sql("ALTER TABLE {$CFG->prefix}data_fields CHANGE param9 param9 text NULL AFTER param8"); execute_sql("ALTER TABLE {$CFG->prefix}data_fields CHANGE param10 param10 text NULL AFTER param9"); execute_sql("ALTER TABLE {$CFG->prefix}data_content CHANGE content content longtext NULL AFTER recordid"); execute_sql("ALTER TABLE {$CFG->prefix}data_content CHANGE content1 content1 longtext NULL AFTER content"); execute_sql("ALTER TABLE {$CFG->prefix}data_content CHANGE content2 content2 longtext NULL AFTER content1"); execute_sql("ALTER TABLE {$CFG->prefix}data_content CHANGE content3 content3 longtext NULL AFTER content2"); execute_sql("ALTER TABLE {$CFG->prefix}data_content CHANGE content4 content4 longtext NULL AFTER content3"); } ////// 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 + -