Function __global->_helper_delete_index_if_exists

Definitions

sources/database_helper.php

  • Delete an index from a table.
  • Visibility: public
  • Is abstract?: No
  • Is static?: No
  • Is final?: No

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$this_ref object No No required parameter N/A N/A Link to the real database object
$table_name ID_TEXT No No required parameter N/A N/A The table name
$index_name ID_TEXT No No required parameter N/A N/A The index name

Preview

Code (PHP)

/**
 * Delete an index from a table.
 *
 * @param  object $this_ref Link to the real database object
 * @param  ID_TEXT $table_name The table name
 * @param  ID_TEXT $index_name The index name
 */

function _helper_delete_index_if_exists(object $this_ref, string $table_name, string $index_name)