ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
interface.ilDBReverse.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
26interface 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.
getTableFieldDefinition(string $table_name, string $field_name)
getTableConstraintDefinition(string $table, string $index_name)
getTriggerDefinition(string $trigger)
getTableIndexDefinition(string $table, string $constraint_name)