function db_field_set_no_default

Sets a field to have no default value.

Parameters

$table: The table to be altered.

$field: The field to be altered.

Related topics

1 call to db_field_set_no_default()
SchemaTest::testSchema in drupal/core/modules/system/lib/Drupal/system/Tests/Database/SchemaTest.php
Tests database interactions.

File

drupal/core/includes/database.inc, line 751
Core systems for the database layer.

Code

function db_field_set_no_default($table, $field) {
  return Database::getConnection()
    ->schema()
    ->fieldSetNoDefault($table, $field);
}