ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilPortfolioDBUpdateSteps.php
Go to the documentation of this file.
1 <?php
2 
19 namespace ILIAS\Portfolio\Setup;
20 
25 {
26  protected \ilDBInterface $db;
27 
28  public function prepare(\ilDBInterface $db): void
29  {
30  $this->db = $db;
31  }
32 
33  public function step_1(): void
34  {
35  $db = $this->db;
36  if (!$db->tableExists('prtf_role_assignment')) {
37  $fields = [
38  'role_id' => [
39  'type' => 'integer',
40  'length' => 4,
41  'notnull' => true,
42  'default' => 0
43  ],
44  'template_ref_id' => [
45  'type' => 'integer',
46  'length' => 4,
47  'notnull' => true,
48  'default' => 0
49  ]
50  ];
51  $db->createTable('prtf_role_assignment', $fields);
52  $db->addPrimaryKey('prtf_role_assignment', ['role_id', 'template_ref_id']);
53  }
54  }
55 }
prepare(\ilDBInterface $db)
Prepare the execution of the steps.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
createTable(string $table_name, array $fields, bool $drop_table=false, bool $ignore_erros=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: class.Agent.php:19