19 declare(strict_types=1);
23 protected \ilDBInterface
$db;
32 if (!$this->db->tableColumnExists(
"glossary_term",
"short_text")) {
33 $this->db->addTableColumn(
"glossary_term",
"short_text", [
40 if (!$this->db->tableColumnExists(
"glossary_term",
"short_text_dirty")) {
41 $this->db->addTableColumn(
"glossary_term",
"short_text_dirty", [
52 if (!$this->db->tableColumnExists(
"glossary_definition",
"migration")) {
53 $this->db->addTableColumn(
"glossary_definition",
"migration", [
64 if (!$this->db->tableExists(
'glo_flashcard_term')) {
85 'type' =>
'timestamp',
95 $this->db->createTable(
"glo_flashcard_term", $fields);
96 $this->db->addPrimaryKey(
"glo_flashcard_term", [
"term_id",
"user_id",
"glo_id"]);
102 if (!$this->db->tableExists(
'glo_flashcard_box')) {
123 'type' =>
'timestamp',
127 $this->db->createTable(
"glo_flashcard_box", $fields);
128 $this->db->addPrimaryKey(
"glo_flashcard_box", [
"box_nr",
"user_id",
"glo_id"]);
134 if (!$this->db->tableColumnExists(
"glossary",
"flash_active")) {
135 $this->db->addTableColumn(
"glossary",
"flash_active", [
143 if (!$this->db->tableColumnExists(
"glossary",
"flash_mode")) {
144 $this->db->addTableColumn(
"glossary",
"flash_mode", [
155 if (!$this->db->tableExists(
'glossary_collection')) {
170 $this->db->createTable(
"glossary_collection", $fields);
171 $this->db->addPrimaryKey(
"glossary_collection", [
"id",
"glo_id"]);
prepare(\ilDBInterface $db)
Prepare the execution of the steps.