ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObject9DBUpdateSteps.php
Go to the documentation of this file.
1 <?php
2 
20 
22 {
23  protected \ilDBInterface $db;
24 
25  public function prepare(\ilDBInterface $db): void
26  {
27  $this->db = $db;
28  }
29 
30  public function step_1(): void
31  {
32  if (!$this->db->tableColumnExists('object_data', 'tile_image_rid')) {
33  $this->db->addTableColumn(
34  'object_data',
35  'tile_image_rid',
36  [
37  'type' => 'text',
38  'notnull' => false,
39  'length' => 64,
40  'default' => ''
41  ]
42  );
43  }
44  }
45 
46  public function step_2(): void
47  {
48  if ($this->db->tableColumnExists('object_data', 'type')) {
49  $this->db->manipulate(
50  'UPDATE object_data SET type = "" WHERE type IS NULL'
51  );
52  $this->db->modifyTableColumn(
53  'object_data',
54  'type',
55  [
56  'type' => 'text',
57  'notnull' => true,
58  'length' => 4,
59  'default' => 'none'
60  ]
61  );
62  }
63 
64  if ($this->db->tableColumnExists('object_data', 'title')) {
65  $this->db->manipulate(
66  'UPDATE object_data SET title = "" WHERE title IS NULL'
67  );
68  $this->db->modifyTableColumn(
69  'object_data',
70  'title',
71  [
72  'type' => 'text',
73  'notnull' => true,
74  'length' => 255,
75  'default' => ''
76  ]
77  );
78  }
79 
80  if ($this->db->tableColumnExists('object_data', 'description')) {
81  $this->db->manipulate(
82  'UPDATE object_data SET description = "" WHERE description IS NULL'
83  );
84  $this->db->modifyTableColumn(
85  'object_data',
86  'description',
87  [
88  'type' => 'text',
89  'notnull' => true,
90  'length' => 128,
91  'default' => ''
92  ]
93  );
94  }
95  }
96 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
prepare(\ilDBInterface $db)
Prepare the execution of the steps.