From 2540512f1e01230f81af984c98a1737b97902f73 Mon Sep 17 00:00:00 2001 From: Dan Marsden Date: Fri, 25 Jan 2019 19:56:16 +1300 Subject: [PATCH] Fix #359 - increase number of allowed status items in the logs. This is still a bit fragile, but with over 10 times the existing number it should be enough for now. --- db/install.xml | 5 +++-- db/upgrade.php | 14 ++++++++++++++ version.php | 4 ++-- 3 files changed, 19 insertions(+), 4 deletions(-) diff --git a/db/install.xml b/db/install.xml index acbc1cf..066960b 100644 --- a/db/install.xml +++ b/db/install.xml @@ -1,5 +1,6 @@ + - @@ -67,7 +68,7 @@ - + diff --git a/db/upgrade.php b/db/upgrade.php index 258bfb3..93bbc46 100644 --- a/db/upgrade.php +++ b/db/upgrade.php @@ -537,5 +537,19 @@ function xmldb_attendance_upgrade($oldversion=0) { upgrade_mod_savepoint(true, 2018051404, 'attendance'); } + if ($oldversion < 2018051408) { + + // Changing precision of field statusset on table attendance_log to (1333). + $table = new xmldb_table('attendance_log'); + $field = new xmldb_field('statusset', XMLDB_TYPE_CHAR, '1333', null, null, null, null, 'statusid'); + + // Launch change of precision for field statusset. + $dbman->change_field_precision($table, $field); + + // Attendance savepoint reached. + upgrade_mod_savepoint(true, 2018051408, 'attendance'); + } + + return $result; } diff --git a/version.php b/version.php index dd22a79..bd5eaa3 100644 --- a/version.php +++ b/version.php @@ -23,9 +23,9 @@ */ defined('MOODLE_INTERNAL') || die(); -$plugin->version = 2018051407; +$plugin->version = 2018051408; $plugin->requires = 2018050800; // Requires 3.5. -$plugin->release = '3.5.5'; +$plugin->release = '3.5.6'; $plugin->maturity = MATURITY_STABLE; $plugin->cron = 0; $plugin->component = 'mod_attendance';