function db_field_set_default

Same name in other branches
  1. 8.9.x core/includes/database.inc \db_field_set_default()

Sets 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'.

Related topics

1 call to db_field_set_default()
SchemaTestCase::testSchema in modules/simpletest/tests/schema.test

File

includes/database/database.inc, line 3002

Code

function db_field_set_default($table, $field, $default) {
    return Database::getConnection()->schema()
        ->fieldSetDefault($table, $field, $default);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.