1 database.inc db_field_set_no_default($table, $field)

Sets a field to have no default value.

Parameters

string $table: The table to be altered.

string $field: The field to be altered.

Return value

void:

Related topics

File

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

Code

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