ILIAS  trunk Revision v11.0_alpha-1713-gd8962da2f67
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
DBHTMLExportUpdateSteps.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Export\HTML\Setup;
22 
24 use ilDBConstants;
25 use ilDBInterface;
26 
28 {
29  protected ilDBInterface $db;
30 
31  public function prepare(ilDBInterface $db): void
32  {
33  $this->db = $db;
34  }
35 
39  public function step_1(): void
40  {
41  if (!$this->db->tableExists("export_files_html")) {
42  $this->db->createTable("export_files_html", [
43  'object_id' => [
44  'type' => 'integer',
45  'length' => 8,
46  'default' => 0,
47  'notnull' => true
48  ],
49  'rid' => [
50  'type' => 'text',
51  'length' => 64,
52  'default' => '',
53  'notnull' => true
54  ],
55  'timestamp' => [
56  'type' => 'timestamp',
57  'notnull' => false
58  ],
59  'type' => [
60  'type' => 'text',
61  'length' => 10,
62  'default' => '',
63  'notnull' => true
64  ],
65  ]);
66  $this->db->addPrimaryKey("export_files_html", ["object_id", "rid"]);
67  }
68  }
69 
70  public function step_2(): void
71  {
72  }
73 
74  public function step_3(): void
75  {
76  }
77 }