function db_field_set_no_default
Same name and namespace in other branches
- 6.x drupal-6.x/includes/database.pgsql.inc \db_field_set_no_default()
- 6.x drupal-6.x/includes/database.mysql-common.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 drupal-7.x/
modules/ simpletest/ tests/ schema.test
Archivo
- drupal-7.x/
includes/ database/ database.inc, line 2878 - Core systems for the database layer.
Código
function db_field_set_no_default($table, $field) {
return Database::getConnection()->schema()->fieldSetNoDefault($table, $field);
}