Function DatabaseConnector->delete_table_field

Definitions

sources/database.php

  • Delete the specified field from the specified table.
  • Visibility: public
  • Is abstract?: No
  • Is static?: No
  • Is final?: No

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$table_name ID_TEXT No No required parameter N/A N/A The table name
$name ID_TEXT No No required parameter N/A N/A The field name

Preview

Code (PHP)

/**
 * Delete the specified field from the specified table.
 *
 * @param  ID_TEXT $table_name The table name
 * @param  ID_TEXT $name The field name
 */

public function delete_table_field(string $table_name, string $name)