ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilBackgroundTasksDB80.php
Go to the documentation of this file.
1 <?php
2 
19 use ILIAS\Setup;
21 
23 {
24  protected ilDBInterface $db;
25 
26  public function prepare(ilDBInterface $db): void
27  {
28  $this->db = $db;
29  }
30 
31  public function step_1(): void
32  {
33  if (!$this->db->indexExistsByFields('il_bt_bucket', ['user_id'])) {
34  $this->db->addIndex('il_bt_bucket', ['user_id'], 'i1');
35  }
36  }
37 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...