ILIAS  release_8 Revision v8.24
interface.ilDBReverse.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
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}
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getTableFieldDefinition(string $table_name, string $field_name)
getTableConstraintDefinition(string $table, string $index_name)
getTriggerDefinition(string $trigger)
getTableIndexDefinition(string $table, string $constraint_name)