ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
interface.ilDBReverse.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
26 interface ilDBReverse
27 {
28  public function getTableFieldDefinition(string $table_name, string $field_name): array;
29 
30  public function getTableIndexDefinition(string $table, string $constraint_name): array;
31 
32  public function getTableConstraintDefinition(string $table, string $index_name): array;
33 
34  public function getTriggerDefinition(string $trigger): array;
35 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getTableIndexDefinition(string $table, string $constraint_name)
getTableConstraintDefinition(string $table, string $index_name)
getTableFieldDefinition(string $table_name, string $field_name)
getTriggerDefinition(string $trigger)