diff --git a/db/upgrade.php b/db/upgrade.php index 06d955b..7285815 100644 --- a/db/upgrade.php +++ b/db/upgrade.php @@ -413,7 +413,9 @@ function xmldb_attendance_upgrade($oldversion=0) { $table = new xmldb_table('attendance_warning_done'); $index = new xmldb_index('notifyid_userid', XMLDB_INDEX_UNIQUE, array('notifyid', 'userid')); - $dbman->drop_index($table, $index); + if ($dbman->index_exists($table, $index)) { + $dbman->drop_index($table, $index); + } $index = new xmldb_index('notifyid', XMLDB_INDEX_NOTUNIQUE, array('notifyid', 'userid')); $dbman->add_index($table, $index);