ILIAS  release_8 Revision v8.24
class.ilECSDBUpdateSteps.php
Go to the documentation of this file.
1<?php
2
19{
20 protected \ilDBInterface $db;
21
22 public function prepare(\ilDBInterface $db): void
23 {
24 $this->db = $db;
25 }
26
27 public function step_1(): void
28 {
29 if ($this->db->tableColumnExists('ecs_server', 'polling_time')) {
30 $this->db->dropTableColumn('ecs_server', 'polling_time');
31 }
32 }
33}
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.
Interface ilDBInterface.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...