Skip to content

Commit

Permalink
Add aiconnect_queue for batch processing
Browse files Browse the repository at this point in the history
  • Loading branch information
marcusgreen committed Jul 17, 2024
1 parent 54c395d commit e3f677d
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 1 deletion.
60 changes: 60 additions & 0 deletions db/upgrade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<?php
// This file is part of Moodle - http://moodle.org/
//
// 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.
//
// 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.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.

/**
* Upgrade steps for AI Connect tool
*
* Documentation: {@link https://moodledev.io/docs/guides/upgrade}
*
* @package tool_aiconnect
* @category upgrade
* @copyright 2024 YOUR NAME <[email protected]>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/

/**
* Execute the plugin upgrade steps from the given old version.
*
* @param int $oldversion
* @return bool
*/
function xmldb_tool_aiconnect_upgrade($oldversion) {
global $DB;
$dbman = $DB->get_manager();
if ($oldversion < 2024032006) {

// Define table tool_aiconnect_queue to be created.
$table = new xmldb_table('tool_aiconnect_queue');

// Adding fields to table tool_aiconnect_queue.
$table->add_field('id', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
$table->add_field('prompttext', XMLDB_TYPE_TEXT, null, null, null, null, null);
$table->add_field('timecreated', XMLDB_TYPE_INTEGER, '10', null, null, null, null);
$table->add_field('inqueue', XMLDB_TYPE_INTEGER, '1', null, null, null, '1');

// Adding keys to table tool_aiconnect_queue.
$table->add_key('primary', XMLDB_KEY_PRIMARY, ['id']);

// Conditionally launch create table for tool_aiconnect_queue.
if (!$dbman->table_exists($table)) {
$dbman->create_table($table);
}

// Aiconnect savepoint reached.
upgrade_plugin_savepoint(true, 2024032006, 'tool', 'aiconnect');
}
return true;
}
2 changes: 1 addition & 1 deletion version.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
defined('MOODLE_INTERNAL') || die();

$plugin->component = 'tool_aiconnect';
$plugin->version = 2024032004;
$plugin->version = 2024032006;
$plugin->requires = 2022112800;
$plugin->release = '4.1.1';

0 comments on commit e3f677d

Please sign in to comment.