function Schema::fieldSetDefault
Same name in this branch
- 8.9.x core/lib/Drupal/Core/Database/Driver/sqlite/Schema.php \Drupal\Core\Database\Driver\sqlite\Schema::fieldSetDefault()
- 8.9.x core/lib/Drupal/Core/Database/Driver/mysql/Schema.php \Drupal\Core\Database\Driver\mysql\Schema::fieldSetDefault()
- 8.9.x core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php \Drupal\Core\Database\Driver\pgsql\Schema::fieldSetDefault()
Set the default value for a field.
Parameters
$table: The table to be altered.
$field: The field to be altered.
$default: Default value to be set. NULL for 'default NULL'.
Throws
\Drupal\Core\Database\SchemaObjectDoesNotExistException If the specified table or field doesn't exist.
Deprecated
in drupal:8.7.0 and is removed from drupal:9.0.0. Instead, call ::changeField() passing a full field specification.
See also
::changeField()
3 methods override Schema::fieldSetDefault()
- Schema::fieldSetDefault in core/
lib/ Drupal/ Core/ Database/ Driver/ sqlite/ Schema.php - Set the default value for a field.
- Schema::fieldSetDefault in core/
lib/ Drupal/ Core/ Database/ Driver/ mysql/ Schema.php - Set the default value for a field.
- Schema::fieldSetDefault in core/
lib/ Drupal/ Core/ Database/ Driver/ pgsql/ Schema.php - Set the default value for a field.
File
-
core/
lib/ Drupal/ Core/ Database/ Schema.php, line 362
Class
- Schema
- Provides a base implementation for Database Schema.
Namespace
Drupal\Core\DatabaseCode
public abstract function fieldSetDefault($table, $field, $default);
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.