public function Schema::dropField in Drupal 9
Same name in this branch
- 9 core/lib/Drupal/Core/Database/Schema.php \Drupal\Core\Database\Schema::dropField()
- 9 core/lib/Drupal/Core/Database/Driver/sqlite/Schema.php \Drupal\Core\Database\Driver\sqlite\Schema::dropField()
- 9 core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php \Drupal\Core\Database\Driver\pgsql\Schema::dropField()
- 9 core/lib/Drupal/Core/Database/Driver/mysql/Schema.php \Drupal\Core\Database\Driver\mysql\Schema::dropField()
- 9 core/tests/fixtures/database_drivers/module/corefake/src/Driver/Database/corefakeWithAllCustomClasses/Schema.php \Drupal\corefake\Driver\Database\corefakeWithAllCustomClasses\Schema::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.
Overrides Schema::dropField
File
- core/
tests/ fixtures/ database_drivers/ module/ corefake/ src/ Driver/ Database/ corefakeWithAllCustomClasses/ Schema.php, line 35
Class
- Schema
- CorefakeWithAllCustomClasses implementation of \Drupal\Core\Database\Schema.
Namespace
Drupal\corefake\Driver\Database\corefakeWithAllCustomClassesCode
public function dropField($table, $field) {
}