ILIAS  trunk Revision v11.0_alpha-1769-g99a433fe2dc
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
interface.ilDBReverse.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
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 }
Interface ilDBReverse.
getTableIndexDefinition(string $table, string $constraint_name)
getTableConstraintDefinition(string $table, string $index_name)
getTableFieldDefinition(string $table_name, string $field_name)
getTriggerDefinition(string $trigger)