3 declare(strict_types=1);
34 $column_name =
'individual';
36 if (!$this->db->tableColumnExists(self::TABLE_NAME, $column_name)) {
37 $this->db->addTableColumn(
47 $query =
'UPDATE ' . self::TABLE_NAME
48 .
' SET ' . $column_name .
' = 1' 49 .
' WHERE last_change_by IS NOT NULL';
50 $this->db->manipulate(
$query);
56 $old =
"risky_to_fail_mail_send";
57 $new =
"sent_mail_risky_to_fail";
59 if ($this->db->tableColumnExists(self::TABLE_NAME, $old) && !$this->db->tableColumnExists(self::TABLE_NAME, $new)) {
60 $this->db->renameTableColumn(self::TABLE_NAME, $old, $new);
66 $column_name =
'sent_mail_expires';
68 if (!$this->db->tableColumnExists(self::TABLE_NAME, $column_name)) {
69 $this->db->addTableColumn(
73 "type" =>
"timestamp",
prepare(ilDBInterface $db)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...