db_field_set_no_default

Versions
6
db_field_set_no_default(&$ret, $table, $field)
7
db_field_set_no_default($table, $field)

Set a field to have no default value.

Parameters

$table The table to be altered.

$field The field to be altered.

Related topics

Code

includes/database/database.inc, line 2439

<?php
function db_field_set_no_default($table, $field) {
  return Database::getConnection()->schema()->fieldSetNoDefault($table, $field);
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.