function db_field_set_no_default
Same name in other branches
- 8.9.x core/includes/database.inc \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 modules/
simpletest/ tests/ schema.test
File
-
includes/
database/ database.inc, line 3014
Code
function db_field_set_no_default($table, $field) {
return Database::getConnection()->schema()
->fieldSetNoDefault($table, $field);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.