ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ProgressBlockUpdateSteps11.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Tracking\Setup;
22 
24 use ilDBConstants;
25 use ilDBInterface;
26 
28 {
29  protected ilDBInterface $db;
30 
31  public function prepare(ilDBInterface $db): void
32  {
33  $this->db = $db;
34  }
35 
39  public function step_1(): void
40  {
41  if ($this->db->tableExists('ut_progress_block')) {
42  return;
43  }
44  $this->db->createTable('ut_progress_block', [
45  'obj_id' => [
46  'type' => ilDBConstants::T_TEXT,
47  'length' => 4,
48  'default' => 0,
49  'notnull' => true
50  ],
51  'show_block' => [
52  'type' => ilDBConstants::T_INTEGER,
53  'length' => 1,
54  'default' => 0,
55  'notnull' => true
56  ]
57  ]);
58  $this->db->addPrimaryKey('ut_progress_block', ['obj_id']);
59  }
60 }