abstract public function DatabaseSchema::dropField

Drop a field.

Parameters

$table: The table to be altered.

$field: The field to be dropped.

Return value

TRUE if the field was successfully dropped, FALSE if there was no field by that name to begin with.

3 methods override DatabaseSchema::dropField()

File

drupal/includes/database/schema.inc, line 451

Class

DatabaseSchema
Base class for database schema definitions.

Code

public abstract function dropField($table, $field);