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()
SchemaTestCase::testSchema in drupal/modules/simpletest/tests/schema.test

File

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

Code

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