2009-11-01 13:17:47 +00:00
|
|
|
<?php
|
2014-07-23 09:58:29 +08:00
|
|
|
// This file is part of Moodle - http://moodle.org/
|
2006-10-26 17:33:40 +00:00
|
|
|
//
|
2014-07-23 09:58:29 +08:00
|
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
2006-10-26 17:33:40 +00:00
|
|
|
//
|
2014-07-23 09:58:29 +08:00
|
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
2008-08-16 12:16:01 +00:00
|
|
|
//
|
2014-07-23 09:58:29 +08:00
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Upgrade code for the chat activity
|
|
|
|
*
|
|
|
|
* @package mod_chat
|
|
|
|
* @copyright 2006 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
|
*/
|
2006-10-26 17:33:40 +00:00
|
|
|
|
2016-02-06 12:33:09 +01:00
|
|
|
function xmldb_chat_upgrade($oldversion) {
|
2022-11-28 14:41:32 +08:00
|
|
|
// Automatically generated Moodle v4.1.0 release upgrade line.
|
|
|
|
// Put any upgrade step following this.
|
|
|
|
|
2023-04-22 23:17:17 +08:00
|
|
|
// Automatically generated Moodle v4.2.0 release upgrade line.
|
|
|
|
// Put any upgrade step following this.
|
|
|
|
|
2023-10-10 10:44:17 +08:00
|
|
|
// Automatically generated Moodle v4.3.0 release upgrade line.
|
|
|
|
// Put any upgrade step following this.
|
|
|
|
|
2010-07-04 10:27:56 +00:00
|
|
|
return true;
|
2006-10-26 17:33:40 +00:00
|
|
|
}
|