ILIAS  trunk Revision v12.0_alpha-1540-g00f839d5fa1
class.LSODropActivationDBUpdateSteps.php
Go to the documentation of this file.
1<?php
2
20{
21 private const TABLE_NAME = "lso_activation";
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 $this->db->dropTable(self::TABLE_NAME);
33 }
34}
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...